Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-03-01 08:34:44 +0000
committerDani Megert2013-03-01 08:34:44 +0000
commitea568e9451ef1c56dccf2287837966564aaa7f3c (patch)
tree2f64f0368bd862b83e3d309b8ce1dbaaebb4167b
parent6bc48eb217f6a60cd5609708c42d46a5698a0ea7 (diff)
downloadeclipse.platform.debug-ea568e9451ef1c56dccf2287837966564aaa7f3c.tar.gz
eclipse.platform.debug-ea568e9451ef1c56dccf2287837966564aaa7f3c.tar.xz
eclipse.platform.debug-ea568e9451ef1c56dccf2287837966564aaa7f3c.zip
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ToggleBreakpointsTargetManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ToggleBreakpointsTargetManager.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ToggleBreakpointsTargetManager.java
index 4376e1eab..c4a99df8d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ToggleBreakpointsTargetManager.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/actions/ToggleBreakpointsTargetManager.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2012 Wind River Systems and others.
+ * Copyright (c) 2008, 2013 Wind River Systems and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -338,7 +338,7 @@ public class ToggleBreakpointsTargetManager implements IToggleBreakpointsTargetM
target = (IToggleBreakpointsTarget) DebugPlugin.getAdapter(element, IToggleBreakpointsTarget.class);
}
if (target == null) {
- target = (IToggleBreakpointsTarget)part.getAdapter(IToggleBreakpointsTarget.class);
+ target = (IToggleBreakpointsTarget) DebugPlugin.getAdapter(part, IToggleBreakpointsTarget.class);
}
return target;
}

Back to the top