Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-08-01 17:37:21 +0000
committerDarin Wright2006-08-01 17:37:21 +0000
commit0ccbc4cf94ee28a83ee51fc62ddb72e1c2743a42 (patch)
treea722a4e5c5cd43bda16fb8775e76e3cb9d90d4f1 /org.eclipse.debug.ui/plugin.xml
parent606d28c635655b0d801741ff5a61ebee4c38b5db (diff)
downloadeclipse.platform.debug-0ccbc4cf94ee28a83ee51fc62ddb72e1c2743a42.tar.gz
eclipse.platform.debug-0ccbc4cf94ee28a83ee51fc62ddb72e1c2743a42.tar.xz
eclipse.platform.debug-0ccbc4cf94ee28a83ee51fc62ddb72e1c2743a42.zip
Bug 74854 [breakpoints] Ctrl+B should set a method breakpoint if invoked from the method signature
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 6d26de398..01a723abf 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -439,12 +439,22 @@
id="org.eclipse.debug.ui.actions.ToggleMethodBreakpoint">
</action>
<action
+ definitionId="org.eclipse.debug.ui.commands.ToggleLineBreakpoint"
+ label="%ToggleLineBreakpointAction.label"
+ icon="$nl$/icons/full/obj16/brkp_obj.gif"
+ disabledIcon="$nl$/icons/full/obj16/brkpd_obj.gif"
+ helpContextId="toggle_line_breakpoint_action_context"
+ class="org.eclipse.debug.internal.ui.actions.breakpoints.RetargetToggleLineBreakpointAction"
+ menubarPath="org.eclipse.ui.run/breakpointGroup"
+ id="org.eclipse.debug.ui.actions.ToggleLineBreakpoint">
+ </action>
+ <action
definitionId="org.eclipse.debug.ui.commands.ToggleBreakpoint"
label="%ToggleBreakpointAction.label"
icon="$nl$/icons/full/obj16/brkp_obj.gif"
disabledIcon="$nl$/icons/full/obj16/brkpd_obj.gif"
helpContextId="toggle_breakpoint_action_context"
- class="org.eclipse.debug.internal.ui.actions.breakpoints.RetargetToggleLineBreakpointAction"
+ class="org.eclipse.debug.internal.ui.actions.breakpoints.RetargetToggleBreakpointAction"
menubarPath="org.eclipse.ui.run/breakpointGroup"
id="org.eclipse.debug.ui.actions.ToggleBreakpoint">
</action>

Back to the top