From: Edward Mann Date: Sun, 27 Jan 2008 06:03:29 +0000 (+0000) Subject: Changing from getFullPath to getProjectRelativePath() so that local debug can find... X-Git-Url: http://secure.phpeclipse.com Changing from getFullPath to getProjectRelativePath() so that local debug can find the file. --- diff --git a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/InterpreterRunnerConfiguration.java b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/InterpreterRunnerConfiguration.java index 837d7f4..d2b83cc 100644 --- a/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/InterpreterRunnerConfiguration.java +++ b/net.sourceforge.phpeclipse.launching/src/net/sourceforge/phpdt/internal/launching/InterpreterRunnerConfiguration.java @@ -33,7 +33,7 @@ public class InterpreterRunnerConfiguration { //return project.getLocation().toOSString() + "/" + getFileName(); IResource file = project.findMember(path); - return file.getFullPath().toOSString(); + return file.getProjectRelativePath().toOSString(); } public String getFileName() {