diff options
author | Aurindam Jana <aurindam.jana@nokia.com> | 2011-08-24 17:35:07 +0200 |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2011-08-25 11:48:50 +0200 |
commit | 29c0f0bfef4af34a3d56a8270b07fa3b1f7c5ed9 (patch) | |
tree | 31e55f60507431d7cfbd378793dc94d988e84050 /src/plugins/debugger/qml/qmlv8debuggerclient.cpp | |
parent | 21e50d82df21f3cb21c14b0f0af12b6ae23f4ea4 (diff) | |
download | qt-creator-29c0f0bfef4af34a3d56a8270b07fa3b1f7c5ed9.tar.gz |
Debugger: Client Service synchronization
Sends connect command after all initial commands have been sent.
This ensures that the initialization is complete before the start
of the debugging session.
Change-Id: I1903caa9c213fef4e6b40df89a352d80e350a46d
Reviewed-on: http://codereview.qt.nokia.com/3526
Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
Diffstat (limited to 'src/plugins/debugger/qml/qmlv8debuggerclient.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlv8debuggerclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp index 157c028c6a..692c080d04 100644 --- a/src/plugins/debugger/qml/qmlv8debuggerclient.cpp +++ b/src/plugins/debugger/qml/qmlv8debuggerclient.cpp @@ -192,7 +192,7 @@ void QmlV8DebuggerClient::interruptInferior() } -void QmlV8DebuggerClient::connect() +void QmlV8DebuggerClient::startSession() { QByteArray request; @@ -204,7 +204,7 @@ void QmlV8DebuggerClient::connect() sendMessage(packMessage(request)); } -void QmlV8DebuggerClient::disconnect() +void QmlV8DebuggerClient::endSession() { QByteArray request; |