# HG changeset patch # User Eugene Ostroukhov # Date 1275952979 25200 # Node ID 7d239d0853b9903cce8816631683c726681199f0 # Parent 9e80d9bd54fe9ba3721bab573b85e69279c6e835 Bug 2779 - Better naming for Application templates diff -r 9e80d9bd54fe -r 7d239d0853b9 org.symbian.tools.wrttools/plugin.xml --- a/org.symbian.tools.wrttools/plugin.xml Mon Jun 07 14:58:15 2010 -0700 +++ b/org.symbian.tools.wrttools/plugin.xml Mon Jun 07 16:22:59 2010 -0700 @@ -155,7 +155,7 @@ templateDetails = new HashMap(); @@ -215,11 +213,6 @@ @Override public void addPages() { - resourcePage = new WizardNewProjectCreationPage("Resource"); - resourcePage.setDescription("Create a Web Runtime application project in the workspace or other location"); - resourcePage.setTitle("Create a New Web Runtime Application Project"); - addPage(resourcePage); - templatesPage = new WRTProjectTemplateWizardPage(context, bindingContext); addPage(templatesPage); @@ -243,11 +236,9 @@ @Override public IWizardPage getNextPage(IWizardPage page) { - if (page == resourcePage) { - context.setProjectName(resourcePage.getProjectName()); - context.setProjectUri(resourcePage.getLocationURI()); - } if (page == templatesPage) { + context.setProjectName(templatesPage.getProjectName()); + context.setProjectUri(templatesPage.getLocationURI()); ProjectTemplate template = context.getTemplate(); if (template != null) { WRTProjectDetailsWizardPage activePage = templateDetails.get(template);