Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJared Burns2002-04-24 16:29:43 +0000
committerJared Burns2002-04-24 16:29:43 +0000
commitaf3fb7e057cfe4a5e0581160ca2106b677ddc289 (patch)
tree79c319aa811d519577b7b40280b3a5d93a12031b /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java
parent1dbf490dadb4307943c173614a4f78dabc513690 (diff)
downloadeclipse.platform.debug-af3fb7e057cfe4a5e0581160ca2106b677ddc289.tar.gz
eclipse.platform.debug-af3fb7e057cfe4a5e0581160ca2106b677ddc289.tar.xz
eclipse.platform.debug-af3fb7e057cfe4a5e0581160ca2106b677ddc289.zip
Bug 14520 - Debug plugins should provide consistent unique identifier access
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java
index cba4f51e3..bacd73b94 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ShowTypesAction.java
@@ -34,7 +34,7 @@ public class ShowTypesAction extends Action {
setHoverImageDescriptor(DebugPluginImages.getImageDescriptor(IDebugUIConstants.IMG_LCL_TYPE_NAMES));
setDisabledImageDescriptor(DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_DLCL_TYPE_NAMES));
setImageDescriptor(DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_ELCL_TYPE_NAMES));
- setId(DebugUIPlugin.getDefault().getDescriptor().getUniqueIdentifier() + ".ShowTypesAction"); //$NON-NLS-1$
+ setId(DebugUIPlugin.getUniqueIdentifier() + ".ShowTypesAction"); //$NON-NLS-1$
WorkbenchHelp.setHelp(this, IDebugHelpContextIds.SHOW_TYPES_ACTION);
}

Back to the top