summaryrefslogtreecommitdiff
path: root/src/plugins/debugger/debuggerrunner.cpp
diff options
context:
space:
mode:
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 70aa7c4e9b..80d2a09677 100644
--- a/src/plugins/debugger/debuggerrunner.cpp
+++ b/src/plugins/debugger/debuggerrunner.cpp
@@ -457,11 +457,11 @@ DebuggerRunControl *DebuggerRunControlFactory::createAndScheduleRun(const Debugg
QString errorMessage;
DebuggerRunControl *rc = doCreate(sp, 0, &errorMessage);
if (!rc) {
- ProjectExplorer::ProjectExplorerPlugin::showRunErrorMessage(errorMessage);
+ ProjectExplorerPlugin::showRunErrorMessage(errorMessage);
return 0;
}
debuggerCore()->showMessage(sp.startMessage, 0);
- ProjectExplorerPlugin::instance()->startRunControl(rc, DebugRunMode);
+ ProjectExplorerPlugin::startRunControl(rc, DebugRunMode);
return rc;
}