Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RetargetWatchpointAction.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RetargetWatchpointAction.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RetargetWatchpointAction.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RetargetWatchpointAction.java
index e0a585dac..112b32108 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RetargetWatchpointAction.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/breakpoints/RetargetWatchpointAction.java
@@ -35,4 +35,10 @@ public class RetargetWatchpointAction extends RetargetBreakpointAction {
protected boolean canPerformAction(Object target, ISelection selection, IWorkbenchPart part) {
return ((IToggleBreakpointsTarget)target).canToggleWatchpoints(part, selection);
}
+ /* (non-Javadoc)
+ * @see org.eclipse.debug.internal.ui.actions.RetargetAction#getOperationUnavailableMessage()
+ */
+ protected String getOperationUnavailableMessage() {
+ return Messages.RetargetWatchpointAction_0;
+ }
}

Back to the top