diff options
author | hjk <hjk@qt.io> | 2017-10-16 09:51:11 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2017-10-17 11:20:09 +0000 |
commit | 4977c91544a92b09063983c43ad5abbcc84608f7 (patch) | |
tree | 72ef895ba77b42f5d15fec91d171af26cd21de44 /src/plugins/debugger/qml/qmlcppengine.cpp | |
parent | 62217464663b9e9aa6092b3211e18b55e1d26461 (diff) | |
download | qt-creator-4977c91544a92b09063983c43ad5abbcc84608f7.tar.gz |
Debugger: Directly pass from engine to inferior setup in all engines
This removes the setupSlaveInferior() synchronization point which
wasn't really needed anymore as it was always triggered in
response to a notifyEngineSetupOk() of the master engine.
Change-Id: I24faec36b180fa961e10dfd88fe4d874f7310140
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlcppengine.cpp')
-rw-r--r-- | src/plugins/debugger/qml/qmlcppengine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/qml/qmlcppengine.cpp b/src/plugins/debugger/qml/qmlcppengine.cpp index 77e5204dc9..21e280ebfe 100644 --- a/src/plugins/debugger/qml/qmlcppengine.cpp +++ b/src/plugins/debugger/qml/qmlcppengine.cpp @@ -380,8 +380,8 @@ void QmlCppEngine::setupEngine() void QmlCppEngine::setupInferior() { EDEBUG("\nMASTER SETUP INFERIOR"); - m_qmlEngine->setupSlaveInferior(); - m_cppEngine->setupSlaveInferior(); + m_qmlEngine->setupInferior(); + m_cppEngine->setupInferior(); } void QmlCppEngine::runEngine() |