Remove superfluous "warning: " from qDebug output (win)

Reviewed-by: hjk
This commit is contained in:
con
2009-03-24 17:51:05 +01:00
parent 6aeb8a764b
commit 10ffdd5dd3

View File

@@ -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;
}