Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/MatchLocator.java')
-rw-r--r--core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/MatchLocator.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/MatchLocator.java b/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/MatchLocator.java
index 23ae942fc6e..44008b6ba6a 100644
--- a/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/MatchLocator.java
+++ b/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/MatchLocator.java
@@ -389,7 +389,7 @@ public class MatchLocator implements ISourceElementRequestor, ICSearchConstants
Reader reader = null;
- IPath realPath = null;
+ realPath = null;
IProject project = null;
if( workspaceRoot != null ){
@@ -525,11 +525,11 @@ public class MatchLocator implements ISourceElementRequestor, ICSearchConstants
object = node;
}
}
-
+
if( currentResource != null ){
- match = resultCollector.createMatch( currentResource, offset, end, object );
+ match = resultCollector.createMatch( currentResource, offset, end, object, null );
} else if( currentPath != null ){
- match = resultCollector.createMatch( currentPath, offset, end, object );
+ match = resultCollector.createMatch( currentPath, offset, end, object, realPath );
}
if( match != null ){
//Save till later
@@ -584,6 +584,7 @@ public class MatchLocator implements ISourceElementRequestor, ICSearchConstants
private IPath currentPath = null;
private ICSearchScope searchScope;
private IWorkspaceRoot workspaceRoot;
+ private IPath realPath;
private IResource currentResource = null;
private LinkedList resourceStack = new LinkedList();

Back to the top