diff options
author | con <qtc-committer@nokia.com> | 2009-03-24 17:51:05 +0100 |
---|---|---|
committer | con <qtc-committer@nokia.com> | 2009-03-24 18:07:28 +0100 |
commit | 10ffdd5dd3a2cf1b3bde68cd1ba9dd087bbe2cb1 (patch) | |
tree | 094b84f8cf2c66ab1aea5bb67144670ab99d7166 | |
parent | 6aeb8a764bbc17f57e3dec14187857697fc64ee2 (diff) | |
download | qt-creator-10ffdd5dd3a2cf1b3bde68cd1ba9dd087bbe2cb1.tar.gz |
Remove superfluous "warning: " from qDebug output (win)
Reviewed-by: hjk
-rw-r--r-- | src/plugins/debugger/gdbengine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdbengine.cpp b/src/plugins/debugger/gdbengine.cpp index 6889f9b16e..0908364547 100644 --- a/src/plugins/debugger/gdbengine.cpp +++ b/src/plugins/debugger/gdbengine.cpp @@ -510,7 +510,7 @@ void GdbEngine::handleResponse(const QByteArray &buff) // On Windows, the contents seem to depend on the debugger // version and/or OS version used. if (data.startsWith("warning:")) - qq->showApplicationOutput(data); + qq->showApplicationOutput(data.mid(9)); // cut "warning: " break; } |