Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2004-10-18 18:34:18 +0000
committerJared Burns2004-10-18 18:34:18 +0000
commit5f9d2baba9b340f144a715e7fa2b459bf3947dd3 (patch)
tree05df3af952a5599e09fc0f3fdf666b0d6b168695 /org.eclipse.debug.ui/plugin.xml
parent11d0cf83b047b3b2c640774ddb1eceb450f87587 (diff)
downloadeclipse.platform.debug-5f9d2baba9b340f144a715e7fa2b459bf3947dd3.tar.gz
eclipse.platform.debug-5f9d2baba9b340f144a715e7fa2b459bf3947dd3.tar.xz
eclipse.platform.debug-5f9d2baba9b340f144a715e7fa2b459bf3947dd3.zip
Bug 75282 - Composite breakpoint groups (add images to containers)
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml22
1 files changed, 13 insertions, 9 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 18fd10c9f..654e5d22a 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -702,12 +702,12 @@
tooltip="%clearDefaultGroup.tooltip">
</action>
<action
- id="org.eclipse.debug.ui.breakpointsView.toolbar.showByAction"
+ id="org.eclipse.debug.ui.breakpointsView.toolbar.groupByAction"
menubarPath="defaultBreakpointGroup"
- class="org.eclipse.debug.internal.ui.actions.ShowBreakpointsByAction"
- helpContextId="show_breakpoints_by_action_context"
- label="Show By..."
- tooltip="Choose how to show breakpoints">
+ class="org.eclipse.debug.internal.ui.actions.breakpointGroups.GroupBreakpointsByAction"
+ helpContextId="group_breakpoints_by_action_context"
+ label="Group By"
+ tooltip="Choose how to group breakpoints">
</action>
</viewContribution>
<!-- Contributions to Expression View Toolbar -->
@@ -2140,18 +2140,22 @@ M4 = Platform-specific fourth key
<breakpointContainerFactory
class="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointProjectContainerFactory"
id="org.eclipse.debug.ui.breakpointProjectContainerFactory"
- label="Project"/>
+ label="Project"
+ icon="icons/full/obj16/prj_obj.gif"/>
<breakpointContainerFactory
class="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointFileContainerFactory"
id="org.eclipse.debug.ui.breakpointFileContainerFactory"
- label="File"/>
+ label="File"
+ icon="icons/full/obj16/file_obj.gif"/>
<breakpointContainerFactory
class="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointTypeContainerFactory"
id="org.eclipse.debug.ui.breakpointTypeContainerFactory"
- label="Breakpoint Type"/>
+ label="Breakpoint Type"
+ icon="icons/full/obj16/brkp_type.gif"/>
<breakpointContainerFactory
class="org.eclipse.debug.internal.ui.views.breakpoints.BreakpointGroupContainerFactory"
id="org.eclipse.debug.ui.breakpointGroupContainerFactory"
- label="Custom Groups"/>
+ label="Custom Groups"
+ icon="icons/full/obj16/brkp_grp.gif"/>
</extension>
</plugin> \ No newline at end of file

Back to the top