partially working new chronochat
diff --git a/src/profileeditor.cpp b/src/profileeditor.cpp
index dd037ca..db00a6f 100644
--- a/src/profileeditor.cpp
+++ b/src/profileeditor.cpp
@@ -94,6 +94,7 @@
m_currentIdentity = Name(inputIdentity.toUtf8().constData());
string filter("profile_identity = '");
filter.append(m_currentIdentity.toUri()).append("'");
+ _LOG_DEBUG("filter: " << filter);
m_tableModel->setEditStrategy(QSqlTableModel::OnManualSubmit);
m_tableModel->setTable("SelfProfile");
@@ -103,6 +104,8 @@
m_tableModel->setHeaderData(1, Qt::Horizontal, QObject::tr("Type"));
m_tableModel->setHeaderData(2, Qt::Horizontal, QObject::tr("Value"));
+ _LOG_DEBUG("row count: " << m_tableModel->rowCount());
+
ui->profileTable->setModel(m_tableModel);
ui->profileTable->setColumnHidden(0, true);
ui->profileTable->show();