mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 20:15:22 +02:00
Made the PDOMUpdator show the whole path to the TU.
This commit is contained in:
parent
6a0b94fd93
commit
4fd1cf2064
1 changed files with 3 additions and 3 deletions
|
@ -97,7 +97,7 @@ public class PDOMUpdator extends Job {
|
||||||
ITranslationUnit tu = (ITranslationUnit)i.next();
|
ITranslationUnit tu = (ITranslationUnit)i.next();
|
||||||
monitor.subTask(String.valueOf(count--)
|
monitor.subTask(String.valueOf(count--)
|
||||||
+" files remaining - "
|
+" files remaining - "
|
||||||
+ tu.getElementName());
|
+ tu.getPath().toString());
|
||||||
processAddedTU(tu);
|
processAddedTU(tu);
|
||||||
monitor.worked(1);
|
monitor.worked(1);
|
||||||
}
|
}
|
||||||
|
@ -109,7 +109,7 @@ public class PDOMUpdator extends Job {
|
||||||
ITranslationUnit tu = (ITranslationUnit)i.next();
|
ITranslationUnit tu = (ITranslationUnit)i.next();
|
||||||
monitor.subTask(String.valueOf(count--)
|
monitor.subTask(String.valueOf(count--)
|
||||||
+" files remaining - "
|
+" files remaining - "
|
||||||
+ tu.getElementName());
|
+ tu.getPath().toString());
|
||||||
processChangedTU(tu);
|
processChangedTU(tu);
|
||||||
monitor.worked(1);
|
monitor.worked(1);
|
||||||
}
|
}
|
||||||
|
@ -121,7 +121,7 @@ public class PDOMUpdator extends Job {
|
||||||
ITranslationUnit tu = (ITranslationUnit)i.next();
|
ITranslationUnit tu = (ITranslationUnit)i.next();
|
||||||
monitor.subTask(String.valueOf(count--)
|
monitor.subTask(String.valueOf(count--)
|
||||||
+" files remaining - "
|
+" files remaining - "
|
||||||
+ tu.getElementName());
|
+ tu.getPath().toString());
|
||||||
processRemovedTU(tu);
|
processRemovedTU(tu);
|
||||||
monitor.worked(1);
|
monitor.worked(1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue