mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
Fix to [Bug 179220] pas de index
This commit is contained in:
parent
3f454e4c3b
commit
2cbdda97c7
1 changed files with 5 additions and 5 deletions
|
@ -1243,23 +1243,23 @@ public class CoreModel {
|
||||||
if(lSetting != null){
|
if(lSetting != null){
|
||||||
ICLanguageSettingEntry[] entries = lSetting.getSettingEntries(ICLanguageSettingEntry.INCLUDE_PATH);
|
ICLanguageSettingEntry[] entries = lSetting.getSettingEntries(ICLanguageSettingEntry.INCLUDE_PATH);
|
||||||
if(entries.length != 0)
|
if(entries.length != 0)
|
||||||
return true;
|
return false;
|
||||||
|
|
||||||
entries = lSetting.getSettingEntries(ICLanguageSettingEntry.MACRO);
|
entries = lSetting.getSettingEntries(ICLanguageSettingEntry.MACRO);
|
||||||
if(entries.length != 0)
|
if(entries.length != 0)
|
||||||
return true;
|
return false;
|
||||||
|
|
||||||
entries = lSetting.getSettingEntries(ICLanguageSettingEntry.INCLUDE_FILE);
|
entries = lSetting.getSettingEntries(ICLanguageSettingEntry.INCLUDE_FILE);
|
||||||
if(entries.length != 0)
|
if(entries.length != 0)
|
||||||
return true;
|
return false;
|
||||||
|
|
||||||
entries = lSetting.getSettingEntries(ICLanguageSettingEntry.MACRO_FILE);
|
entries = lSetting.getSettingEntries(ICLanguageSettingEntry.MACRO_FILE);
|
||||||
if(entries.length != 0)
|
if(entries.length != 0)
|
||||||
return true;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean oldIsScannerInformationEmpty(IResource resource) {
|
private static boolean oldIsScannerInformationEmpty(IResource resource) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue