X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java index d395616..d032da5 100644 --- a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java +++ b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/PHPSourceLocator.java @@ -156,7 +156,7 @@ public class PHPSourceLocator implements IPersistableSourceLocator, ISourcePrese IFile[] files = root.findFilesForLocation(filePath); for (int i = 0; i < files.length; i++) { if (files[i].getProject().equals(proj)) { - fileName = proj.getLocation().append(files[i].getProjectRelativePath()).toOSString(); + fileName = proj.getFullPath().append(files[i].getProjectRelativePath()).toOSString(); break; } }