eclipse plugin: fix the titles of the wizards

This commit is contained in:
Timotei Dolean 2010-07-06 12:25:27 +00:00
parent 0474da689d
commit f126364f95
3 changed files with 7 additions and 1 deletions

View file

@ -36,7 +36,7 @@ public class EraNewWizard extends NewWizardTemplate
EraPage0 page0_;
public EraNewWizard() {
setWindowTitle("New Wizard");
setWindowTitle("Create a new era");
setNeedsProgressMonitor(true);
}

View file

@ -36,6 +36,11 @@ public class FactionNewWizard extends NewWizardTemplate
FactionPage0 page0_;
FactionPage1 page1_;
public FactionNewWizard() {
setWindowTitle("Create a new faction");
setNeedsProgressMonitor(true);
}
@Override
public void addPages()
{

View file

@ -48,6 +48,7 @@ public class ScenarioNewWizard extends NewWizardTemplate
*/
public ScenarioNewWizard() {
super();
setWindowTitle("Create a new scenario");
setNeedsProgressMonitor(true);
}