Skip to content
Snippets Groups Projects
Commit 6f29d0c5 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Fix crash in Form class wizard


Run parents initializePage, not the one from our grandparent.

Task-number: QTCREATORBUG-14620
Change-Id: I1ec2d424c0e6fd6d7dea1050d5d8f6b8f00d27d5
Reviewed-by: default avatarTobias Hunger <tobias.hunger@theqtcompany.com>
parent e0c5ff03
No related branches found
No related tags found
No related merge requests found
......@@ -72,7 +72,7 @@ bool FormClassWizardDialog::validateCurrentPage()
void FormClassWizardDialog::initializePage(int id)
{
QWizard::initializePage(id);
Core::BaseFileWizard::initializePage(id);
// Switching from form to class page: store XML template and set a suitable
// class name in the class page based on the form base class
if (id == ClassPageId) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment