Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkersten2007-06-20 06:53:25 +0000
committermkersten2007-06-20 06:53:25 +0000
commit85da8be9c9148eaf8d9a99a85090a3fb30c61592 (patch)
tree9519e98a22e42a3da1f81e334ebe43e21b67fe21 /org.eclipse.mylyn.help.ui/src
parent323531a9c248315f400be577770b0fdb06c384a3 (diff)
downloadorg.eclipse.mylyn.tasks-85da8be9c9148eaf8d9a99a85090a3fb30c61592.tar.gz
org.eclipse.mylyn.tasks-85da8be9c9148eaf8d9a99a85090a3fb30c61592.tar.xz
org.eclipse.mylyn.tasks-85da8be9c9148eaf8d9a99a85090a3fb30c61592.zip
NEW - bug 165359: fix UI nits
https://bugs.eclipse.org/bugs/show_bug.cgi?id=165359
Diffstat (limited to 'org.eclipse.mylyn.help.ui/src')
-rw-r--r--org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java b/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java
index 0b172d53f..39c992544 100644
--- a/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java
+++ b/org.eclipse.mylyn.help.ui/src/org/eclipse/mylyn/internal/help/ui/actions/ShowMylynLegendAction.java
@@ -15,6 +15,8 @@ import org.eclipse.jface.action.IAction;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.mylyn.internal.help.ui.dialogs.UiLegendDialog;
import org.eclipse.swt.widgets.Shell;
+import org.eclipse.ui.IViewActionDelegate;
+import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
import org.eclipse.ui.PlatformUI;
@@ -22,7 +24,7 @@ import org.eclipse.ui.PlatformUI;
/**
* @author Mik Kersten
*/
-public class ShowMylynLegendAction implements IWorkbenchWindowActionDelegate {
+public class ShowMylynLegendAction implements IWorkbenchWindowActionDelegate, IViewActionDelegate {
public void dispose() {
// ignore
@@ -41,4 +43,9 @@ public class ShowMylynLegendAction implements IWorkbenchWindowActionDelegate {
public void selectionChanged(IAction action, ISelection selection) {
// ignore
}
+
+ public void init(IViewPart view) {
+ // ignore
+
+ }
}

Back to the top