From f9a69a5eee9cb19470d2596ab53c09d7cfa982ac Mon Sep 17 00:00:00 2001 From: hjk <qtc-committer@nokia.com> Date: Mon, 16 Aug 2010 15:52:38 +0200 Subject: [PATCH] debugger: fix state transitions for 'Run to Line' and 'Jump to Line' --- src/plugins/debugger/gdb/gdbengine.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 69179d64932..708ebdb551b 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -1067,6 +1067,7 @@ void GdbEngine::handleQuerySources(const GdbResponse &response) void GdbEngine::handleExecuteJumpToLine(const GdbResponse &response) { if (response.resultClass == GdbResultRunning) { + notifyInferiorRunOk(); // All is fine. Waiting for the temporary breakpoint to be hit. } else if (response.resultClass == GdbResultDone) { // This happens on old gdb. Trigger the effect of a '*stopped'. @@ -1079,6 +1080,7 @@ void GdbEngine::handleExecuteJumpToLine(const GdbResponse &response) void GdbEngine::handleExecuteRunToLine(const GdbResponse &response) { if (response.resultClass == GdbResultRunning) { + notifyInferiorRunOk(); // All is fine. Waiting for the temporary breakpoint to be hit. } else if (response.resultClass == GdbResultDone) { // This happens on old gdb. Trigger the effect of a '*stopped'. -- GitLab