1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Bug 527019 - Build not running in Container for Managed Make project

- the CommandLauncherManager.CommandLauncherWrapper class is
  designed to figure out what launcher to use after being
  created and a project is set, but it is not built for reuse
- change the CommandLauncherWrapper class to reset the launcher
  back to null when the project gets set so that any reuse
  will be sure to get the correct internal launcher after
  resetting the project

Change-Id: I2c0758ca53f7164d4bbd4a6f738acd7c7c042370
This commit is contained in:
Jeff Johnston 2017-11-08 17:50:25 -05:00
parent bacbb7b3c7
commit 5f1962e068

View file

@ -69,11 +69,8 @@ public class CommandLauncherManager {
@Override
public void setProject(IProject project) {
if (launcher != null) {
launcher.setProject(project);
} else {
fProject = project;
}
fProject = project;
launcher = null;
}
@Override
@ -88,9 +85,8 @@ public class CommandLauncherManager {
public void showCommand(boolean show) {
if (launcher != null) {
launcher.showCommand(show);
} else {
fShowCommand = show;
}
fShowCommand = show;
}
@Override
@ -105,9 +101,8 @@ public class CommandLauncherManager {
public void setErrorMessage(String error) {
if (launcher != null) {
launcher.setErrorMessage(error);
} else {
fErrorMessage = error;
}
fErrorMessage = error;
}
@Override