From 91e6c14ff921b35aabeb87ce3bdddc356f795b4c Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 10 Dec 2010 10:01:29 +0100 Subject: debugger: find better separation between runcontrol and engine --- src/plugins/debugger/debuggerrunner.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/debugger/debuggerrunner.cpp') 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) -- cgit v1.2.1