mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-13 03:55: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();
|
||||
monitor.subTask(String.valueOf(count--)
|
||||
+" files remaining - "
|
||||
+ tu.getElementName());
|
||||
+ tu.getPath().toString());
|
||||
processAddedTU(tu);
|
||||
monitor.worked(1);
|
||||
}
|
||||
|
@ -109,7 +109,7 @@ public class PDOMUpdator extends Job {
|
|||
ITranslationUnit tu = (ITranslationUnit)i.next();
|
||||
monitor.subTask(String.valueOf(count--)
|
||||
+" files remaining - "
|
||||
+ tu.getElementName());
|
||||
+ tu.getPath().toString());
|
||||
processChangedTU(tu);
|
||||
monitor.worked(1);
|
||||
}
|
||||
|
@ -121,7 +121,7 @@ public class PDOMUpdator extends Job {
|
|||
ITranslationUnit tu = (ITranslationUnit)i.next();
|
||||
monitor.subTask(String.valueOf(count--)
|
||||
+" files remaining - "
|
||||
+ tu.getElementName());
|
||||
+ tu.getPath().toString());
|
||||
processRemovedTU(tu);
|
||||
monitor.worked(1);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue