Skip to content
Snippets Groups Projects
Commit e6610124 authored by Christiaan Janssen's avatar Christiaan Janssen
Browse files

QmlCppDebugger: managing breakpoints during engine start

reviewed-by: hjk
parent e612e663
No related branches found
No related tags found
No related merge requests found
......@@ -507,11 +507,9 @@ void QmlCppEngine::slaveEngineStateChanged
case InferiorRunOk:
if (state() == EngineRunRequested) {
if (otherEngine->state() == InferiorRunOk
|| otherEngine->state() == InferiorStopOk)
if (otherEngine->state() == InferiorRunOk)
notifyEngineRunAndInferiorRunOk();
else if (otherEngine->state() == InferiorRunOk
|| otherEngine->state() == InferiorStopOk)
else if (otherEngine->state() == InferiorStopOk)
notifyEngineRunAndInferiorStopOk();
else
EDEBUG("... WAITING FOR OTHER INFERIOR RUN");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment