(no commit message)
authorrobekras <robekras>
Sun, 13 Mar 2011 12:32:26 +0000 (12:32 +0000)
committerrobekras <robekras>
Sun, 13 Mar 2011 12:32:26 +0000 (12:32 +0000)
net.sourceforge.phpeclipse.xdebug.ui/META-INF/MANIFEST.MF
net.sourceforge.phpeclipse.xdebug.ui/src/net/sourceforge/phpeclipse/xdebug/ui/php/model/PHPLineBreakpointAdapter.java

index 15f249f..12722c3 100644 (file)
@@ -17,3 +17,4 @@ Require-Bundle: org.eclipse.core.runtime,
 Bundle-ActivationPolicy: lazy
 Bundle-RequiredExecutionEnvironment: J2SE-1.4
 Bundle-Vendor: PHPEclipse project team
+Import-Package: net.sourceforge.phpeclipse
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())) {