1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

[245708] indexer preferences not passed to remote indexer

This commit is contained in:
Mike Kucera 2009-07-16 18:49:42 +00:00
parent 3c77086ce7
commit 26c0a92a71

View file

@ -209,6 +209,13 @@ public abstract class StandaloneIndexer {
return fIndexAllFiles;
}
/**
* If true then all files will be indexed.
*/
public void setIndexAllFiles(boolean indexAllFiles) {
fIndexAllFiles = indexAllFiles;
}
/**
* Returns the collection of valid file extensions for C/C++ source.
*/
@ -373,6 +380,7 @@ public abstract class StandaloneIndexer {
clearIndex();
fDelegate= createTask(getFilesAdded(tus), NO_TUS, NO_TUS);
fDelegate.setUpdateFlags(fUpdateOptions);
fDelegate.setParseUpFront();
if (fDelegate != null) {
fDelegate.run(monitor);