Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPawel Piech2012-02-23 04:34:35 +0000
committerPawel Piech2012-02-23 04:34:35 +0000
commit2253307b7a0515c567b2e4449f97636c85348cc7 (patch)
tree6f06ca57c96213282652f8bd38067ce4fd0a8a6d
parent34308a56094410da5a071c1736f8a0019e00c9d5 (diff)
downloadeclipse.platform.debug-2253307b7a0515c567b2e4449f97636c85348cc7.tar.gz
eclipse.platform.debug-2253307b7a0515c567b2e4449f97636c85348cc7.tar.xz
eclipse.platform.debug-2253307b7a0515c567b2e4449f97636c85348cc7.zip
Bug 370022 - Skip All Breakpoints tool should not have mnemonic in tooltip
-rw-r--r--org.eclipse.debug.ui/plugin.properties1
-rw-r--r--org.eclipse.debug.ui/plugin.xml1
2 files changed, 2 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/plugin.properties b/org.eclipse.debug.ui/plugin.properties
index db6747c56..59d36c550 100644
--- a/org.eclipse.debug.ui/plugin.properties
+++ b/org.eclipse.debug.ui/plugin.properties
@@ -261,6 +261,7 @@ ActionDefinition.skipAllBreakpoints.name=Skip All Breakpoints
ActionDefinition.skipAllBreakpoints.description=Sets whether or not any breakpoint should suspend execution
SkipAllBreakpointsAction.label=S&kip All Breakpoints
+SkipAllBreakpointsAction.tooltip=Skip All Breakpoints
editWatchExpressionAction.label=&Edit Watch Expression...
editWatchExpressionAction.tooltip=Edit the selected watch expression
reevaluateWatchExpressionAction.label=&Reevaluate Watch Expression
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 6477dd329..5d6963a89 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -220,6 +220,7 @@
<action
definitionId="org.eclipse.debug.ui.commands.SkipAllBreakpoints"
label="%SkipAllBreakpointsAction.label"
+ tooltip="%SkipAllBreakpointsAction.label"
icon="$nl$/icons/full/elcl16/skip_brkp.gif"
helpContextId="skip_all_breakpoints_action_context"
class="org.eclipse.debug.internal.ui.actions.breakpoints.SkipAllBreakpointsAction"

Back to the top