Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Cortell2010-01-20 21:53:23 +0000
committerJohn Cortell2010-01-20 21:53:23 +0000
commitbdc8b9e3423484d3eb166a040e13f16acec807d8 (patch)
tree36744376e91f5805dff1b1558b5d27395724b9ff /debug/org.eclipse.cdt.debug.ui/plugin.xml
parent8e3a1169fe61d88f154685f27962925fc66d7ab1 (diff)
downloadorg.eclipse.cdt-bdc8b9e3423484d3eb166a040e13f16acec807d8.tar.gz
org.eclipse.cdt-bdc8b9e3423484d3eb166a040e13f16acec807d8.tar.xz
org.eclipse.cdt-bdc8b9e3423484d3eb166a040e13f16acec807d8.zip
[300262] No "format" in registers view popup menu (applied patch)
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui/plugin.xml')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/plugin.xml16
1 files changed, 15 insertions, 1 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml
index 210fb5dda17..d5577da1295 100644
--- a/debug/org.eclipse.cdt.debug.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml
@@ -318,8 +318,22 @@
</menu>
</menuContribution>
+ <menuContribution
+ locationURI="popup:org.eclipse.debug.ui.RegisterView?after=variableGroup">
+ <menu
+ id="org.eclipse.cdt.debug.ui.registerView_CVariableFormatMenu"
+ label="%CVariableFormatMenu.label">
+ <visibleWhen>
+ <reference definitionId="org.eclipse.cdt.debug.ui.testAreNumberFormatsSupported"/>
+ </visibleWhen>
+ <dynamic
+ id="org.eclipse.cdt.debug.ui.numberFormats"
+ class="org.eclipse.cdt.debug.internal.ui.actions.NumberFormatsContribution">
+ </dynamic>
+ <separator name="formatGroup" visible="false"/>
+ </menu>
+ </menuContribution>
</extension>
-
<extension point="org.eclipse.core.expressions.definitions">
<definition
id="org.eclipse.cdt.debug.ui.testAreNumberFormatsSupported">

Back to the top