mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Bug 412919: Show project refreshing after build in progress monitor as a separate task
This commit is contained in:
parent
492f6a2b18
commit
d23faeeed1
2 changed files with 3 additions and 2 deletions
|
@ -323,7 +323,8 @@ public class BuildRunnerHelper implements Closeable {
|
|||
monitor = new NullProgressMonitor();
|
||||
}
|
||||
try {
|
||||
monitor.beginTask(CCorePlugin.getResourceString("BuildRunnerHelper.updatingProject"), IProgressMonitor.UNKNOWN); //$NON-NLS-1$
|
||||
monitor.beginTask(CCorePlugin.getFormattedString("BuildRunnerHelper.refreshingProject", project.getName()), IProgressMonitor.UNKNOWN); //$NON-NLS-1$
|
||||
monitor.subTask(""); //$NON-NLS-1$
|
||||
|
||||
// Do not allow the cancel of the refresh, since the builder is external
|
||||
// to Eclipse, files may have been created/modified and we will be out-of-sync.
|
||||
|
|
|
@ -98,7 +98,7 @@ CCorePlugin.startupJob=CDT Startup
|
|||
BuildRunnerHelper.unsupportedConfiguration=Info: Configuration "{0}" uses tool-chain "{1}" that is unsupported on this system, attempting to build anyway.
|
||||
BuildRunnerHelper.removingMarkers=Removing problem markers for {0}
|
||||
BuildRunnerHelper.invokingCommand=Invoking Command: {0}
|
||||
BuildRunnerHelper.updatingProject=Updating project...
|
||||
BuildRunnerHelper.refreshingProject=Refreshing resource tree of project {0}
|
||||
BuildRunnerHelper.buildProject={0} of project {1}
|
||||
BuildRunnerHelper.buildProjectConfiguration={0} of configuration {1} for project {2}
|
||||
BuildRunnerHelper.buildFinished=Build Finished (took {0})
|
||||
|
|
Loading…
Add table
Reference in a new issue