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:
parent
3c77086ce7
commit
26c0a92a71
1 changed files with 8 additions and 0 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue