diff options
author | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-02-25 15:27:13 +0100 |
---|---|---|
committer | Friedemann Kleint <Friedemann.Kleint@nokia.com> | 2011-02-25 15:28:01 +0100 |
commit | 88f333267f466bf579a2d75f15f4f766a681735b (patch) | |
tree | 88b3b395b5ec0833febdb7ba57c33f9b19f5a165 /src/plugins/debugger/gdb/codagdbadapter.cpp | |
parent | 49311aa3621be7bd716a04bfadd195d4655849b2 (diff) | |
download | qt-creator-88f333267f466bf579a2d75f15f4f766a681735b.tar.gz |
Fix Krazy code scanning tool warnings (QString, loops, spelling).
Diffstat (limited to 'src/plugins/debugger/gdb/codagdbadapter.cpp')
-rw-r--r-- | src/plugins/debugger/gdb/codagdbadapter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/gdb/codagdbadapter.cpp b/src/plugins/debugger/gdb/codagdbadapter.cpp index 1439b74909..a88eb688ae 100644 --- a/src/plugins/debugger/gdb/codagdbadapter.cpp +++ b/src/plugins/debugger/gdb/codagdbadapter.cpp @@ -597,7 +597,7 @@ void CodaGdbAdapter::handleGdbServerCommand(const QByteArray &cmd) sendGdbServerAck(); logMessage(_("Not implemented 'Continue with signal' %1: ").arg(signalNumber), LogWarning); - sendGdbServerMessage("O" + QByteArray("Console output").toHex()); + sendGdbServerMessage('O' + QByteArray("Console output").toHex()); sendGdbServerMessage("W81"); // "Process exited with result 1 sendTrkContinue(); } |