diff options
author | Aurindam Jana <aurindam.jana@nokia.com> | 2011-07-26 16:22:49 +0200 |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2011-08-03 11:27:38 +0200 |
commit | ab574ba88dcbc15538e58a6d46185a9b032fe7f9 (patch) | |
tree | 8e09146112f00d4491096bdfec9bb10966a8efdf /src/plugins/debugger/gdb/codagdbadapter.cpp | |
parent | 999265105bd30b7b30e6688fec35b1448eb276be (diff) | |
download | qt-creator-ab574ba88dcbc15538e58a6d46185a9b032fe7f9.tar.gz |
Delegate javascript debugging to Script and V8 debugger clients.
The appropriate client handles the debugging based on the service available at the server side.
Change-Id: I46b66036f700fc7e45e8b38cef7f1ce1445b1122
Reviewed-on: http://codereview.qt.nokia.com/2497
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
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 d28dda19f9..cedf750cf5 100644 --- a/src/plugins/debugger/gdb/codagdbadapter.cpp +++ b/src/plugins/debugger/gdb/codagdbadapter.cpp @@ -1349,7 +1349,7 @@ void CodaGdbAdapter::handleReadRegisters(const CodaCommandResult &result) logMessage("ERROR: " + result.errorString(), LogError); return; } - if (result.values.isEmpty() || result.values.front().type() != JsonValue::String) { + if (result.values.isEmpty() || result.values.front().type() != Json::JsonValue::String) { logMessage(_("Format error in register message: ") + result.toString(), LogError); return; |