diff options
author | hjk <qtc-committer@nokia.com> | 2010-12-10 10:01:29 +0100 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-12-10 12:42:40 +0100 |
commit | 91e6c14ff921b35aabeb87ce3bdddc356f795b4c (patch) | |
tree | 071a6d11c2d0b12fde57477b89f8104c0795b958 /src/plugins/debugger/debuggerrunner.cpp | |
parent | 18986b8ccb6458a6723f2ab884ff5cbbb44a3cde (diff) | |
download | qt-creator-91e6c14ff921b35aabeb87ce3bdddc356f795b4c.tar.gz |
debugger: find better separation between runcontrol and engine
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) |