From 0753ee06e3dbf10adf7d0814db00750cc87a9264 Mon Sep 17 00:00:00 2001 From: Mikhail Khodjaiants Date: Tue, 24 Sep 2002 20:33:06 +0000 Subject: [PATCH] Implementation of source locator. --- .../cdt/debug/core/sourcelookup/CProjectSourceLocation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/CProjectSourceLocation.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/CProjectSourceLocation.java index 4a989ea9b80..070396d8fd3 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/CProjectSourceLocation.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/sourcelookup/CProjectSourceLocation.java @@ -128,7 +128,7 @@ public class CProjectSourceLocation implements ICSourceLocation private Object findFileByRelativePath( String fileName ) { IPath path = getProject().getLocation().append( fileName ); - return getProject().findMember( path ); + return findFileByAbsolutePath( path.toOSString() ); } /**