(no commit message)
[phpeclipse.git] / net.sourceforge.phpeclipse.xdebug.ui / src / net / sourceforge / phpeclipse / xdebug / ui / php / model / PHPLineBreakpointAdapter.java
index a7e6cb9..70a2af0 100644 (file)
@@ -23,7 +23,7 @@ public class PHPLineBreakpointAdapter implements IToggleBreakpointsTarget {
                IResource resource = (IResource) editorPart.getEditorInput().getAdapter(IResource.class);
                ITextSelection textSelection = (ITextSelection) selection;
                int lineNumber = textSelection.getStartLine()+1;
-               IBreakpoint[] breakpoints = DebugPlugin.getDefault().getBreakpointManager().getBreakpoints(IXDebugConstants.ID_PHP_DEBUG_MODEL);
+               IBreakpoint[] breakpoints = DebugPlugin.getDefault().getBreakpointManager().getBreakpoints(IXDebugConstants.ID_PHP_BREAKPOINT_MODEL);
                for (int i = 0; i < breakpoints.length; i++) {
                        IBreakpoint breakpoint = breakpoints[i];
                        if (resource.equals(breakpoint.getMarker().getResource())) {