From c33cd1e5d4b5709e8f44bf4defe67ef26cf8c641 Mon Sep 17 00:00:00 2001 From: Edward Mann Date: Sun, 27 Jan 2008 06:03:29 +0000 Subject: [PATCH] Changing from getFullPath to getProjectRelativePath() so that local debug can find the file. --- .../launching/InterpreterRunnerConfiguration.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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() { -- 1.7.1