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:
parent
8f1ac18b4e
commit
984fb3b989
1 changed files with 8 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue