eclipse plugin: fix the titles of the wizards
This commit is contained in:
parent
0474da689d
commit
f126364f95
3 changed files with 7 additions and 1 deletions
|
@ -36,7 +36,7 @@ public class EraNewWizard extends NewWizardTemplate
|
|||
EraPage0 page0_;
|
||||
|
||||
public EraNewWizard() {
|
||||
setWindowTitle("New Wizard");
|
||||
setWindowTitle("Create a new era");
|
||||
setNeedsProgressMonitor(true);
|
||||
}
|
||||
|
||||
|
|
|
@ -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()
|
||||
{
|
||||
|
|
|
@ -48,6 +48,7 @@ public class ScenarioNewWizard extends NewWizardTemplate
|
|||
*/
|
||||
public ScenarioNewWizard() {
|
||||
super();
|
||||
setWindowTitle("Create a new scenario");
|
||||
setNeedsProgressMonitor(true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue