From c7d0acac71c03c44d553c97c35eef4435153810a Mon Sep 17 00:00:00 2001 From: DenioD <41270280+DenioD@users.noreply.github.com> Date: Fri, 1 May 2020 21:49:47 +0200 Subject: [PATCH] delete some debug outputs --- src/chatmodel.cpp | 2 +- src/controller.cpp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/chatmodel.cpp b/src/chatmodel.cpp index 24523a1..89a7dde 100644 --- a/src/chatmodel.cpp +++ b/src/chatmodel.cpp @@ -65,7 +65,7 @@ void ChatModel::clear() void ChatModel::addMessage(ChatItem item) { QString key = this->generateChatItemID(item); - qDebug() << "inserting chatitem with id: " << key; + // qDebug() << "inserting chatitem with id: " << key; this->chatItems[key] = item; } diff --git a/src/controller.cpp b/src/controller.cpp index 36ac2c8..b0453d2 100644 --- a/src/controller.cpp +++ b/src/controller.cpp @@ -966,7 +966,7 @@ void Controller::refreshTransactions() { cid, // we have to set the cid here, its included in the headermemo txid ); - qDebug()<< "Message CID: " << cid; + // qDebug()<< "Message CID: " << cid; chatModel->addMessage(item); } @@ -1006,7 +1006,6 @@ void Controller::refreshChat(QListWidget *listWidget) void Controller::refreshContacts(QListWidget *listWidget) { - qDebug() << "Called Controller::refreshContacts(QListWidget *listWidget)"; contactModel->renderContactList(listWidget); }