From d5936a56e74bd7606175e7d1588ee13a3ecc6f44 Mon Sep 17 00:00:00 2001 From: csoler Date: Mon, 16 Jan 2017 20:49:30 +0100 Subject: [PATCH] removed debug msg --- retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp index 9f0c5040d..91ef4f67d 100644 --- a/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp +++ b/retroshare-gui/src/gui/gxsforums/GxsForumThreadWidget.cpp @@ -1396,7 +1396,9 @@ void GxsForumThreadWidget::fillThreads(QList &threadList, boo // iterate all new threads for (QList::iterator newThread = threadList.begin (); newThread != threadList.end (); ++newThread) { // search existing thread +#ifdef DEBUG_FORUMS std::cerr << "Makign a search for string \"" << (*newThread)->data(COLUMN_THREAD_MSGID,Qt::DisplayRole).toString().toStdString() << "\"" << std::endl; +#endif std::map::const_iterator it = oldThreadMap.find((*newThread)->data(COLUMN_THREAD_MSGID,Qt::DisplayRole).toString()) ;