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

@@ -84,6 +84,15 @@ namespace Internal {
const char * const OPENED_BY_DEBUGGER = "OpenedByDebugger";
const char * const OPENED_WITH_DISASSEMBLY = "DisassemblerView";
const char * const DEBUGMODE = "Debugger.DebugMode";
const char * const DEBUG = "Debugger.Debug";
const int P_ACTION_DEBUG = 90; //priority for the modemanager
#ifdef Q_OS_MAC
const char * const DEBUG_KEY = "Ctrl+Y";
#else
const char * const DEBUG_KEY = "F5";
#endif
} // namespace Constants