Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Swanson2005-02-01 03:17:28 +0000
committerDarin Swanson2005-02-01 03:17:28 +0000
commitb64595ccbf285cc830ef967505edc7178f6aec7e (patch)
tree83d1c191d83e7f98aa1a0f426a96eba03d21cf48 /org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java
parentaf960e741976a35ae219b369bd423888d8cb33fa (diff)
downloadeclipse.platform.debug-b64595ccbf285cc830ef967505edc7178f6aec7e.tar.gz
eclipse.platform.debug-b64595ccbf285cc830ef967505edc7178f6aec7e.tar.xz
eclipse.platform.debug-b64595ccbf285cc830ef967505edc7178f6aec7e.zip
WorkbenchHelp deprecations
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java
index 0bc50e50d..3c80dee8d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/memory/PrintViewTabContextAction.java
@@ -12,7 +12,7 @@
package org.eclipse.debug.internal.ui.views.memory;
import org.eclipse.debug.ui.IDebugUIConstants;
-import org.eclipse.ui.help.WorkbenchHelp;
+import org.eclipse.ui.PlatformUI;
/**
@@ -28,7 +28,7 @@ public class PrintViewTabContextAction extends PrintViewTabAction
{
super();
fViewTab = viewTab;
- WorkbenchHelp.setHelp(this, IDebugUIConstants.PLUGIN_ID + ".PrintViewTabContextAction_context"); //$NON-NLS-1$
+ PlatformUI.getWorkbench().getHelpSystem().setHelp(this, IDebugUIConstants.PLUGIN_ID + ".PrintViewTabContextAction_context"); //$NON-NLS-1$
}

Back to the top