Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Cortell2008-02-14 21:43:38 +0000
committerJohn Cortell2008-02-14 21:43:38 +0000
commit743d1d04ee3f9f6bfabe651daa18dcee09d36fae (patch)
treec7ca5e119629cff0b14f782ce9aaa7bd6d9c2523 /debug/org.eclipse.cdt.debug.ui
parentab1ad42fd74e170cdda358429fe9eba5e2517660 (diff)
downloadorg.eclipse.cdt-743d1d04ee3f9f6bfabe651daa18dcee09d36fae.tar.gz
org.eclipse.cdt-743d1d04ee3f9f6bfabe651daa18dcee09d36fae.tar.xz
org.eclipse.cdt-743d1d04ee3f9f6bfabe651daa18dcee09d36fae.zip
Add Watchpoint memory rendering action contribution was only added for pane 1. There's a pane 2 as well
Diffstat (limited to 'debug/org.eclipse.cdt.debug.ui')
-rw-r--r--debug/org.eclipse.cdt.debug.ui/plugin.xml17
1 files changed, 15 insertions, 2 deletions
diff --git a/debug/org.eclipse.cdt.debug.ui/plugin.xml b/debug/org.eclipse.cdt.debug.ui/plugin.xml
index 6a363a0416e..5e775e60491 100644
--- a/debug/org.eclipse.cdt.debug.ui/plugin.xml
+++ b/debug/org.eclipse.cdt.debug.ui/plugin.xml
@@ -782,13 +782,26 @@
tooltip="%EditRegisterGroupAction.tooltip"/>
</objectContribution>
<viewerContribution
- id="org.eclipse.debug.ui.MemoryView.RenderingViewPane.popupMenu"
+ id="org.eclipse.debug.ui.MemoryView.RenderingViewPane.popupMenu.1"
targetID="org.eclipse.debug.ui.MemoryView.RenderingViewPane.1">
<action
class="org.eclipse.cdt.debug.internal.ui.actions.AddWatchpointOnMemoryActionDelegate"
enablesFor="1"
icon="icons/elcl16/watchpoint_co.gif"
- id="org.eclipse.cdt.debug.internal.ui.actions.AddWatchpointOnMemoryActionDelegate"
+ id="org.eclipse.cdt.debug.internal.ui.actions.AddWatchpointOnMemoryActionDelegate.1"
+ label="%AddWatchpoint.label"
+ menubarPath="additions"
+ tooltip="%AddWatchpoint.tooltip">
+ </action>
+ </viewerContribution>
+ <viewerContribution
+ id="org.eclipse.debug.ui.MemoryView.RenderingViewPane.popupMenu.2"
+ targetID="org.eclipse.debug.ui.MemoryView.RenderingViewPane.2">
+ <action
+ class="org.eclipse.cdt.debug.internal.ui.actions.AddWatchpointOnMemoryActionDelegate"
+ enablesFor="1"
+ icon="icons/elcl16/watchpoint_co.gif"
+ id="org.eclipse.cdt.debug.internal.ui.actions.AddWatchpointOnMemoryActionDelegate.2"
label="%AddWatchpoint.label"
menubarPath="additions"
tooltip="%AddWatchpoint.tooltip">

Back to the top