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

Bug 292534 - [New Project Wizard] Phantom page appears while navigating

pages back and forth
This commit is contained in:
Marc-Andre Laperle 2011-09-17 12:01:56 -04:00
parent 6a06d655c6
commit 2d8a86440f

View file

@ -427,8 +427,6 @@ public class MBSWizardHandler extends CWizardHandler {
return; // not probable return; // not probable
ICDTCommonProjectWizard wz = (ICDTCommonProjectWizard)getWizard(); ICDTCommonProjectWizard wz = (ICDTCommonProjectWizard)getWizard();
if (customPages == null) {
MBSCustomPageManager.init(); MBSCustomPageManager.init();
MBSCustomPageManager.addStockPage(getStartingPage(), CDTMainWizardPage.PAGE_ID); MBSCustomPageManager.addStockPage(getStartingPage(), CDTMainWizardPage.PAGE_ID);
MBSCustomPageManager.addStockPage(getConfigPage(), CDTConfigWizardPage.PAGE_ID); MBSCustomPageManager.addStockPage(getConfigPage(), CDTConfigWizardPage.PAGE_ID);
@ -445,7 +443,6 @@ public class MBSWizardHandler extends CWizardHandler {
for (IWizardPage customPage : customPages) for (IWizardPage customPage : customPages)
customPage.setWizard(wz); customPage.setWizard(wz);
}
setCustomPagesFilter(wz); setCustomPagesFilter(wz);
} }