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>
This commit is contained in:
hjk
2017-10-16 09:51:11 +02:00
parent 6221746466
commit 4977c91544
3 changed files with 7 additions and 20 deletions

View File

@@ -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()