mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-06 17:26:01 +02:00
Bug 316040: Bad progress messages being posted from CDI launcher
This commit is contained in:
parent
a7ced67bcb
commit
edbcd95797
1 changed files with 2 additions and 2 deletions
|
@ -696,7 +696,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
|
||||||
//check prerequisite projects for compile errors.
|
//check prerequisite projects for compile errors.
|
||||||
for (Iterator i = orderedProjects.iterator(); i.hasNext();) {
|
for (Iterator i = orderedProjects.iterator(); i.hasNext();) {
|
||||||
IProject proj = (IProject)i.next();
|
IProject proj = (IProject)i.next();
|
||||||
monitor.subTask(LaunchMessages.getString("AbstractCLaunchDelegate.searching_for_errors_in" + proj.getName())); //$NON-NLS-1$
|
monitor.subTask(LaunchMessages.getString("AbstractCLaunchDelegate.searching_for_errors_in") + proj.getName()); //$NON-NLS-1$
|
||||||
monitor.worked(scale);
|
monitor.worked(scale);
|
||||||
compileErrorsInProjs = existsErrors(proj);
|
compileErrorsInProjs = existsErrors(proj);
|
||||||
if (compileErrorsInProjs) {
|
if (compileErrorsInProjs) {
|
||||||
|
@ -706,7 +706,7 @@ abstract public class AbstractCLaunchDelegate extends LaunchConfigurationDelegat
|
||||||
|
|
||||||
//check current project, if prerequite projects were ok
|
//check current project, if prerequite projects were ok
|
||||||
if (!compileErrorsInProjs) {
|
if (!compileErrorsInProjs) {
|
||||||
monitor.subTask(LaunchMessages.getString("AbstractCLaunchDelegate.searching_for_errors_in" + project.getName())); //$NON-NLS-1$
|
monitor.subTask(LaunchMessages.getString("AbstractCLaunchDelegate.searching_for_errors_in") + project.getName()); //$NON-NLS-1$
|
||||||
monitor.worked(scale);
|
monitor.worked(scale);
|
||||||
compileErrorsInProjs = existsErrors(project);
|
compileErrorsInProjs = existsErrors(project);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue