Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'memory/org.eclipse.cdt.debug.ui.memory.memorybrowser/plugin.xml')
-rw-r--r--memory/org.eclipse.cdt.debug.ui.memory.memorybrowser/plugin.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/memory/org.eclipse.cdt.debug.ui.memory.memorybrowser/plugin.xml b/memory/org.eclipse.cdt.debug.ui.memory.memorybrowser/plugin.xml
index 2d483e45adc..9ef7f8e7f21 100644
--- a/memory/org.eclipse.cdt.debug.ui.memory.memorybrowser/plugin.xml
+++ b/memory/org.eclipse.cdt.debug.ui.memory.memorybrowser/plugin.xml
@@ -10,6 +10,7 @@
# Contributors:
# Ted R Williams (Wind River) - initial implementation
# Patrick Chuong (Texas Instruments) - Pin and Clone Supports (331781)
+# Randy Rohrbach (Wind River) - Multiple expression support (326307)
-->
<plugin>
@@ -59,4 +60,19 @@
</action>
</viewContribution>
</extension>
+ <!-- Add the ability to clear the expressions list -->
+ <extension point="org.eclipse.ui.viewActions">
+ <viewContribution
+ id="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser.clearExpressionList"
+ targetID="org.eclipse.cdt.debug.ui.memory.memorybrowser.MemoryBrowser">
+ <action
+ class="org.eclipse.cdt.debug.ui.memory.memorybrowser.ClearExpressionsListAction"
+ id="org.eclipse.cdt.debug.ui.memory.memorybrowser.ClearExpressionListActionID"
+ label="%view.clearExpressionList"
+ menubarPath="additions">
+ </action>
+ </viewContribution>
+ </extension>
+
+
</plugin>

Back to the top