Use the new ProxyAction for the debug button.

Instead of doing context magic which doesn't reflect what actually was
meant: The actions are different commands, but the button should be
corresponding to different commands in different states.
This commit is contained in:
con
2011-01-12 16:36:29 +01:00
parent 1502c64ae4
commit ffc241b719
2 changed files with 40 additions and 56 deletions

View File

@@ -44,7 +44,9 @@ const char * const MODE_DEBUG = "Debugger.Mode.Debug";
const int P_MODE_DEBUG = 85;
// common actions
const char * const STOP = "Debugger.Interrupt";
const char * const INTERRUPT = "Debugger.Interrupt";
const char * const CONTINUE = "Debugger.Continue";
const char * const STOP = "Debugger.Stop";
const char * const RESET = "Debugger.Reset";
const char * const STEP = "Debugger.StepLine";
const char * const STEPOUT = "Debugger.StepOut";