Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2008-04-15 14:20:23 +0000
committerDarin Wright2008-04-15 14:20:23 +0000
commita78a629ad09b62497b35a724c725173d668ae8a1 (patch)
treef89f0c0803b0d62120ff380b5500be1d7889f28f /org.eclipse.debug.ui/plugin.xml
parent296ce9d4871fdf456a3d64853f0c73f0851199fa (diff)
downloadeclipse.platform.debug-a78a629ad09b62497b35a724c725173d668ae8a1.tar.gz
eclipse.platform.debug-a78a629ad09b62497b35a724c725173d668ae8a1.tar.xz
eclipse.platform.debug-a78a629ad09b62497b35a724c725173d668ae8a1.zip
Bug 226997 - Update to use showView command instead of view id
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml94
1 files changed, 34 insertions, 60 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index a672a8795..1f0f9c3a5 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1590,48 +1590,6 @@ M4 = Platform-specific fourth key
id="org.eclipse.debug.ui.commands.addMemoryMonitor"
name="%ActionDefinition.addMemoryBlock.name"/>
<!-- views -->
- <command
- name="%ViewCommand.debugView.name"
- description="%ViewCommand.debugView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.DebugView">
- </command>
- <command
- name="%ViewCommand.breakpointView.name"
- description="%ViewCommand.breakpointView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.BreakpointView">
- </command>
- <command
- name="%ViewCommand.variableView.name"
- description="%ViewCommand.variableView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.VariableView">
- </command>
- <command
- name="%ViewCommand.expressionView.name"
- description="%ViewCommand.expressionView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.ExpressionView">
- </command>
- <command
- name="%ViewCommand.registerView.name"
- description="%ViewCommand.registerView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.RegisterView">
- </command>
- <command
- name="%ViewCommand.moduleView.name"
- description="%ViewCommand.moduleView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.ModuleView">
- </command>
- <command
- name="%ViewCommand.memoryView.name"
- description="%ViewCommand.memoryView.description"
- categoryId="org.eclipse.ui.category.views"
- id="org.eclipse.debug.ui.MemoryView">
- </command>
<!-- Perspective -->
<command
name="%DebugPerspective.name"
@@ -1773,37 +1731,53 @@ M4 = Platform-specific fourth key
sequence="CTRL+Z"
platform="win32"/>
<key
- sequence="M2+M3+Q B"
-
- commandId="org.eclipse.debug.ui.BreakpointView"
- schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
+ commandId="org.eclipse.ui.views.showView"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M2+M3+Q B">
+ <parameter
+ id="org.eclipse.ui.views.showView.viewId"
+ value="org.eclipse.debug.ui.BreakpointView">
+ </parameter>
+ </key>
<key
platform="carbon"
sequence="M2+M3+Q B"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
- platform="carbon"
- sequence="M1+M3+Q B"
-
- commandId="org.eclipse.debug.ui.BreakpointView"
- schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
+ commandId="org.eclipse.ui.views.showView"
+ platform="carbon"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M1+M3+Q B">
+ <parameter
+ id="org.eclipse.ui.views.showView.viewId"
+ value="org.eclipse.debug.ui.BreakpointView">
+ </parameter>
+ </key>
<key
- sequence="M2+M3+Q V"
-
- commandId="org.eclipse.debug.ui.VariableView"
- schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
+ commandId="org.eclipse.ui.views.showView"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M2+M3+Q V">
+ <parameter
+ id="org.eclipse.ui.views.showView.viewId"
+ value="org.eclipse.debug.ui.VariableView">
+ </parameter>
+ </key>
<key
platform="carbon"
sequence="M2+M3+Q V"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
<key
- platform="carbon"
- sequence="M1+M3+Q V"
-
- commandId="org.eclipse.debug.ui.VariableView"
- schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"/>
+ commandId="org.eclipse.ui.views.showView"
+ platform="carbon"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M1+M3+Q V">
+ <parameter
+ id="org.eclipse.ui.views.showView.viewId"
+ value="org.eclipse.debug.ui.VariableView">
+ </parameter>
+ </key>
<key
commandId="org.eclipse.debug.ui.commands.addMemoryMonitor"
contextId="org.eclipse.debug.ui.memoryview"

Back to the top