QmlDebugger: update location marker while debugging

Reviewed-by: hjk
This commit is contained in:
Christiaan Janssen
2011-05-16 17:06:52 +02:00
parent fa0127bedd
commit 0f6376f16c

View File

@@ -490,6 +490,7 @@ void QmlEngine::executeStep()
rs << cmd;
logMessage(LogSend, cmd);
sendMessage(reply);
resetLocation();
notifyInferiorRunRequested();
notifyInferiorRunOk();
}
@@ -502,6 +503,7 @@ void QmlEngine::executeStepI()
rs << cmd;
logMessage(LogSend, cmd);
sendMessage(reply);
resetLocation();
notifyInferiorRunRequested();
notifyInferiorRunOk();
}
@@ -514,6 +516,7 @@ void QmlEngine::executeStepOut()
rs << cmd;
logMessage(LogSend, cmd);
sendMessage(reply);
resetLocation();
notifyInferiorRunRequested();
notifyInferiorRunOk();
}
@@ -526,6 +529,7 @@ void QmlEngine::executeNext()
rs << cmd;
logMessage(LogSend, cmd);
sendMessage(reply);
resetLocation();
notifyInferiorRunRequested();
notifyInferiorRunOk();
}