Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-01-18 15:37:38 +0000
committerMichael Rennie2007-01-18 15:37:38 +0000
commit6dc1f48d5818e89fea4be6f5989c7c43ef327b71 (patch)
tree970eab375cc446e014381bf12c584a0b91c95572 /org.eclipse.debug.ui/plugin.xml
parente96e5301017e3abf93d53bdd8759664c3d8a244f (diff)
downloadeclipse.platform.debug-6dc1f48d5818e89fea4be6f5989c7c43ef327b71.tar.gz
eclipse.platform.debug-6dc1f48d5818e89fea4be6f5989c7c43ef327b71.tar.xz
eclipse.platform.debug-6dc1f48d5818e89fea4be6f5989c7c43ef327b71.zip
Bug 170784
org.eclipse.debug.ui plugin.xml uses enablesFor="1+" incorrectly
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 6c4266130..ad5656ecf 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1129,7 +1129,7 @@
helpContextId="remove_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.RemoveBreakpointAction"
menubarPath="breakpointGroup"
- enablesFor="1+"
+ enablesFor="+"
id="org.eclipse.debug.ui.breakpointsView.toolbar.remove">
</action>
<action
@@ -1138,7 +1138,7 @@
helpContextId="disable_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.DisableBreakpointsAction"
menubarPath="breakpointGroup"
- enablesFor="1+"
+ enablesFor="+"
id="org.eclipse.debug.ui.actions.DisableBreakpoint">
</action>
<action
@@ -1147,7 +1147,7 @@
helpContextId="enable_breakpoint_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.EnableBreakpointsAction"
menubarPath="breakpointGroup"
- enablesFor="1+"
+ enablesFor="+"
id="org.eclipse.debug.ui.actions.EnableBreakpoint">
</action>
<action
@@ -1158,7 +1158,7 @@
menubarPath="additions"/>
<action
class="org.eclipse.debug.internal.ui.importexport.breakpoints.ExportBreakpoints"
- enablesFor="1+"
+ enablesFor="+"
icon="$nl$/icons/full/elcl16/export_brkpts.gif"
id="org.eclipse.debug.internal.ui.importexport.breakpoints.exportBreakpointsContext"
label="%exportBreakpoints.label"

Back to the top