X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java b/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java index 6591de8..d46d8b2 100644 --- a/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java +++ b/net.sourceforge.phpeclipse.debug.ui/src/net/sourceforge/phpdt/internal/debug/ui/launcher/LoadPathEntryLabelProvider.java @@ -1,14 +1,16 @@ package net.sourceforge.phpdt.internal.debug.ui.launcher; +import net.sourceforge.phpdt.internal.debug.ui.PHPDebugUiPlugin; import net.sourceforge.phpeclipse.LoadPathEntry; + +import org.eclipse.jface.viewers.IBaseLabelProvider; import org.eclipse.jface.viewers.ILabelProvider; import org.eclipse.jface.viewers.ILabelProviderListener; import org.eclipse.swt.graphics.Image; -import net.sourceforge.phpdt.internal.debug.ui.PHPDebugUiPlugin; /** * @author xp4 - * + * * To change this generated comment edit the template variable "typecomment": * Window>Preferences>Java>Templates. */ @@ -26,9 +28,11 @@ public class LoadPathEntryLabelProvider implements ILabelProvider { */ public String getText(Object element) { if (element != null && element.getClass() == LoadPathEntry.class) - return ((LoadPathEntry) element).getProject().getLocation().toOSString(); - - PHPDebugUiPlugin.log(new RuntimeException("Unable to render load path.")); + return ((LoadPathEntry) element).getProject().getFullPath() + .toOSString(); + + PHPDebugUiPlugin + .log(new RuntimeException("Unable to render load path.")); return null; }