diff options
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r-- | src/plugins/debugger/debuggerrunner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp index 7ee26441f0..97d904998c 100644 --- a/src/plugins/debugger/debuggerrunner.cpp +++ b/src/plugins/debugger/debuggerrunner.cpp @@ -656,7 +656,7 @@ void DebuggerRunControl::start() return; } - debuggerCore()->runControlStarted(this); + debuggerCore()->runControlStarted(engine()); // We might get a synchronous startFailed() notification on Windows, // when launching the process fails. Emit a proper finished() sequence. @@ -684,7 +684,7 @@ void DebuggerRunControl::handleFinished() emit addToOutputWindowInline(this, tr("Debugging has finished"), false); if (engine()) engine()->handleFinished(); - debuggerCore()->runControlFinished(this); + debuggerCore()->runControlFinished(engine()); } void DebuggerRunControl::showMessage(const QString &msg, int channel) |