diff --git a/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/IncludePattern.java b/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/IncludePattern.java index 6318c9e61ec..04145ecc410 100644 --- a/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/IncludePattern.java +++ b/core/org.eclipse.cdt.core/search/org/eclipse/cdt/internal/core/search/matching/IncludePattern.java @@ -48,7 +48,7 @@ public class IncludePattern extends CSearchPattern { * @see org.eclipse.cdt.internal.core.search.matching.CSearchPattern#decodeIndexEntry(org.eclipse.cdt.internal.core.index.IEntryResult) */ protected void decodeIndexEntry(IEntryResult entryResult) { - this.decodedSimpleName = entryResult.extractSimpleName().toCharArray(); + this.decodedSimpleName = entryResult.getName().toCharArray();//entryResult.extractSimpleName().toCharArray(); } /* (non-Javadoc)