ProjectExplorer + Debugger: Move Debug Action to the Debugger plugin

Since all the debuggers are implemented in the debuggerplugin, that's a
natural place to put the action.
This commit is contained in:
dt
2010-11-12 20:18:29 +01:00
parent 211e0d84fa
commit 6683b40844
11 changed files with 91 additions and 91 deletions

View File

@@ -175,7 +175,7 @@ RunControl *QmlRunControlFactory::create(RunConfiguration *runConfiguration,
RunControl *runControl = 0;
if (mode == ProjectExplorer::Constants::RUNMODE) {
runControl = new QmlRunControl(config, mode);
} else if (mode == ProjectExplorer::Constants::DEBUGMODE) {
} else if (mode == Debugger::Constants::DEBUGMODE) {
runControl = createDebugRunControl(config);
}
return runControl;