diff options
author | hjk <qtc-committer@nokia.com> | 2010-06-23 11:55:35 +0200 |
---|---|---|
committer | hjk <qtc-committer@nokia.com> | 2010-06-23 12:40:56 +0200 |
commit | 5adb6559e25a075c41a7ab32cc168252c79e4f0a (patch) | |
tree | 989d9649d4991cdb831136c16465bbc48b72f879 /src/plugins/debugger/debuggerrunner.cpp | |
parent | bbf4acf43ba613d79ee401ddd9e8b571e9c0f689 (diff) | |
download | qt-creator-5adb6559e25a075c41a7ab32cc168252c79e4f0a.tar.gz |
debugger: attempt to fix symbian output connections
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 61afe22be2..9c38c14500 100644 --- a/src/plugins/debugger/debuggerrunner.cpp +++ b/src/plugins/debugger/debuggerrunner.cpp @@ -171,7 +171,7 @@ RunControl *DebuggerRunControlFactory::create return create(sp, runConfiguration); } -RunControl *DebuggerRunControlFactory::create(const DebuggerStartParameters &sp, +DebuggerRunControl *DebuggerRunControlFactory::create(const DebuggerStartParameters &sp, RunConfiguration *runConfiguration) { DebuggerRunControl *runControl = new DebuggerRunControl(runConfiguration); @@ -369,7 +369,7 @@ void DebuggerRunControl::createEngine(const DebuggerStartParameters &sp) break; default: { // Could not find anything suitable. - emit debuggingFinished(); + debuggingFinished(); // Create Message box with possibility to go to settings const QString msg = tr("Cannot debug '%1' (tool chain: '%2'): %3") .arg(sp.executable, toolChainName(sp.toolChainType), m_errorMessage); |