1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 14:15:23 +02:00

Bug 356863 - Can't finish ImplementMethod wizard when methods contain a

unselected templated method
This commit is contained in:
Marc-Andre Laperle 2011-10-08 17:55:58 -04:00
parent 8f1ac18b4e
commit 984fb3b989

View file

@ -218,4 +218,12 @@ public class ParameterNamesInputPage extends UserInputWizardPage {
}
delayedPreviewUpdater.schedule(PREVIEW_UPDATE_DELAY);
}
@Override
public boolean isPageComplete() {
if (!config.isChecked()) {
return true;
}
return super.isPageComplete();
}
}