aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/debuggerrunner.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2010-06-23 11:55:35 +0200
committerhjk <[email protected]>2010-06-23 12:40:56 +0200
commit5adb6559e25a075c41a7ab32cc168252c79e4f0a (patch)
tree989d9649d4991cdb831136c16465bbc48b72f879 /src/plugins/debugger/debuggerrunner.cpp
parentbbf4acf43ba613d79ee401ddd9e8b571e9c0f689 (diff)
debugger: attempt to fix symbian output connections
Diffstat (limited to 'src/plugins/debugger/debuggerrunner.cpp')
-rw-r--r--src/plugins/debugger/debuggerrunner.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/debugger/debuggerrunner.cpp b/src/plugins/debugger/debuggerrunner.cpp
index 61afe22be23..9c38c145008 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);