mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +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;
|
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.
|
* Returns the collection of valid file extensions for C/C++ source.
|
||||||
*/
|
*/
|
||||||
|
@ -373,6 +380,7 @@ public abstract class StandaloneIndexer {
|
||||||
clearIndex();
|
clearIndex();
|
||||||
fDelegate= createTask(getFilesAdded(tus), NO_TUS, NO_TUS);
|
fDelegate= createTask(getFilesAdded(tus), NO_TUS, NO_TUS);
|
||||||
fDelegate.setUpdateFlags(fUpdateOptions);
|
fDelegate.setUpdateFlags(fUpdateOptions);
|
||||||
|
fDelegate.setParseUpFront();
|
||||||
|
|
||||||
if (fDelegate != null) {
|
if (fDelegate != null) {
|
||||||
fDelegate.run(monitor);
|
fDelegate.run(monitor);
|
||||||
|
|
Loading…
Add table
Reference in a new issue