From: hjk Date: Tue, 23 Nov 2010 11:37:44 +0000 (+0100) Subject: debugger: move the "SOMETHING NEEDED" message from console to log X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=66bffd3dcd6a7832ebf64dd6b1c07ea1ff549717;p=qt-creator-jp%2Fqt-creator-jp.git debugger: move the "SOMETHING NEEDED" message from console to log --- diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index d8bd928e8d..47979e03c8 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -1261,7 +1261,8 @@ void WatchHandler::insertData(const WatchData &data) if (!m_engine->isSynchronous()) { m_engine->updateWatchData(data); } else { - qDebug() << "ENDLESS LOOP: SOMETHING NEEDED: " << data.toString(); + m_engine->showMessage(QLatin1String("ENDLESS LOOP: SOMETHING NEEDED: ") + + data.toString()); WatchData data1 = data; data1.setAllUnneeded(); data1.setValue(QLatin1String("")); @@ -1720,5 +1721,6 @@ void WatchHandler::removeTooltip() m_tooltips->reinitialize(); m_tooltips->emitAllChanged(); } + } // namespace Internal } // namespace Debugger