1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for 101711 : Dependency Tests failing on Linux

This commit is contained in:
Bogdan Gheorghe 2005-06-24 20:48:35 +00:00
parent e5baf66734
commit 9688b97f43

View file

@ -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)