1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Bug 447722 - NewLaunchTargetWizard needs a window title

* Added setWindowTitle("Launch Target Type") to NewLaunchTargetWizard

Change-Id: I3703017f1c282352eb27c87a9e58eae7abea0f2d
Signed-off-by: Dan Ayson <danielayson@gmail.com>
Reviewed-on: https://git.eclipse.org/r/35062
Reviewed-by: Doug Schaefer <dschaefer@qnx.com>
Tested-by: Doug Schaefer <dschaefer@qnx.com>
This commit is contained in:
Dan Ayson 2014-10-17 11:21:22 -04:00 committed by Doug Schaefer
parent 0770532f51
commit 8251ed4964

View file

@ -18,6 +18,7 @@ public class NewLaunchTargetWizard extends Wizard {
private final NewLaunchTargetTypePage typePage;
public NewLaunchTargetWizard(LaunchBarUIManager uiManager) {
setWindowTitle("Launch Target Type");
typePage = new NewLaunchTargetTypePage(uiManager);
setForcePreviousAndNextButtons(true);
}