delete some debug outputs
This commit is contained in:
@@ -65,7 +65,7 @@ void ChatModel::clear()
|
|||||||
void ChatModel::addMessage(ChatItem item)
|
void ChatModel::addMessage(ChatItem item)
|
||||||
{
|
{
|
||||||
QString key = this->generateChatItemID(item);
|
QString key = this->generateChatItemID(item);
|
||||||
qDebug() << "inserting chatitem with id: " << key;
|
// qDebug() << "inserting chatitem with id: " << key;
|
||||||
this->chatItems[key] = item;
|
this->chatItems[key] = item;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -966,7 +966,7 @@ void Controller::refreshTransactions() {
|
|||||||
cid, // we have to set the cid here, its included in the headermemo
|
cid, // we have to set the cid here, its included in the headermemo
|
||||||
txid
|
txid
|
||||||
);
|
);
|
||||||
qDebug()<< "Message CID: " << cid;
|
// qDebug()<< "Message CID: " << cid;
|
||||||
chatModel->addMessage(item);
|
chatModel->addMessage(item);
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1006,7 +1006,6 @@ void Controller::refreshChat(QListWidget *listWidget)
|
|||||||
|
|
||||||
void Controller::refreshContacts(QListWidget *listWidget)
|
void Controller::refreshContacts(QListWidget *listWidget)
|
||||||
{
|
{
|
||||||
qDebug() << "Called Controller::refreshContacts(QListWidget *listWidget)";
|
|
||||||
contactModel->renderContactList(listWidget);
|
contactModel->renderContactList(listWidget);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user