Bug 8318 - internal error occured, if open the menu "Debug -> Debug History"
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/DebugHistoryMenuAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/DebugHistoryMenuAction.java index b0a9784..230449b 100644 --- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/DebugHistoryMenuAction.java +++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/DebugHistoryMenuAction.java
@@ -9,6 +9,7 @@ import org.eclipse.jface.action.IAction; import org.eclipse.jface.action.IMenuCreator; import org.eclipse.jface.viewers.ISelection; +import org.eclipse.swt.widgets.Event; public class DebugHistoryMenuAction extends DebugDropDownAction implements IMenuCreator { public DebugHistoryMenuAction() { @@ -32,4 +33,11 @@ public void run(IAction action) { //do nothing as the action strictly generates the history sub menu } + + /** + * @see IActionDelegateWithEvent#runWithEvent(IAction, Event) + */ + public void runWithEvent(IAction action, Event event) { + //do nothing as the action strictly generates the history sub menu + } }
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RunHistoryMenuAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RunHistoryMenuAction.java index f00739a..cb777e1 100644 --- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RunHistoryMenuAction.java +++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/RunHistoryMenuAction.java
@@ -9,6 +9,7 @@ import org.eclipse.jface.action.IAction; import org.eclipse.jface.action.IMenuCreator; import org.eclipse.jface.viewers.ISelection; +import org.eclipse.swt.widgets.Event; public class RunHistoryMenuAction extends RunDropDownAction implements IMenuCreator { @@ -33,4 +34,11 @@ public void run(IAction action) { //do nothing as the action strictly generates the history sub menu } + + /** + * @see IActionDelegateWithEvent#runWithEvent(IAction, Event) + */ + public void runWithEvent(IAction action, Event event) { + //do nothing as the action strictly generates the history sub menu + } } \ No newline at end of file