diff options
author | Aurindam Jana <aurindam.jana@nokia.com> | 2012-06-13 11:55:16 +0200 |
---|---|---|
committer | Aurindam Jana <aurindam.jana@nokia.com> | 2012-06-13 12:51:37 +0200 |
commit | e85886d6387e0a4dcf4cc843e22b5cdd7879e9fa (patch) | |
tree | d538245d8e75cab1d69e456e9cff2b81a1dfce09 /src/plugins/debugger/debuggerplugin.cpp | |
parent | 8bcd2ad1458b6a718510df5c8d49126b502f5817 (diff) | |
download | qt-creator-e85886d6387e0a4dcf4cc843e22b5cdd7879e9fa.tar.gz |
QmlEngine: Attach to Remote Process
In the case of Attach to Remote Process, try connecting immediately.
While, in the case of Attach to Remote Server, wait for output message
or timeout.
Change-Id: I94570a2ab05bb069ea64819fcbb0055555fe0f33
Reviewed-by: Christian Kandeler <christian.kandeler@nokia.com>
Diffstat (limited to 'src/plugins/debugger/debuggerplugin.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerplugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index d17b90f45f..d6600b6bff 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -1814,7 +1814,7 @@ void DebuggerPluginPrivate::attachToQmlPort() sp.qmlServerPort = dlg.port(); sp.sysroot = dlg.sysroot(); - sp.startMode = AttachToRemoteServer; + sp.startMode = AttachToRemoteProcess; sp.closeMode = KillAtClose; sp.languages = QmlLanguage; |