Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] TVT fix for debug.ui 70902



Here's a fix to remove duplicate entries from Window/Customize perspective/commands/CC++Debug/Menubar Details
For Head and 2.0.1
Thanks,
Tanya
Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/ChangeLog,v
retrieving revision 1.297
diff -u -r1.297 ChangeLog
--- ChangeLog	5 Aug 2004 19:51:08 -0000	1.297
+++ ChangeLog	10 Aug 2004 14:00:43 -0000
@@ -1,3 +1,7 @@
+2004-08-10 Tanya Wolff
+	Fix for 70902
+	* plugin.xml
+	
 2004-08-05 Mikhail Khodjaiants
 	Cosmetic fix.
 	* CDebugUIMessages.properties
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/plugin.xml,v
retrieving revision 1.118
diff -u -r1.118 plugin.xml
--- plugin.xml	15 Jul 2004 23:04:07 -0000	1.118
+++ plugin.xml	10 Aug 2004 14:00:43 -0000
@@ -147,18 +147,10 @@
                label="%RunMenu.label"
                path="additions"
                id="org.eclipse.ui.run">
-            <separator
-                  name="cBreakpointGroup">
-            </separator>
-         </menu>
-         <menu
-               label="%RunMenu.label"
-               path="additions"
-               id="org.eclipse.ui.run">
-            <separator
-                  name="cExpressionGroup">
-            </separator>
+            <separator name="cBreakpointGroup"/>
+            <separator name="cExpressionGroup"/>
          </menu>
+         
          <action
                id="org.eclipse.cdt.debug.internal.ui.actions.JumpToLineActionDelegate"
                hoverIcon="icons/full/clcl16/jump_co.gif"

Back to the top