diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-27 13:18:05 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2014-06-06 09:35:05 +0200 |
commit | 55f625465d259ed4a85145aabeddfe9b840058f1 (patch) | |
tree | abd3afaabc9a3648eef8a20e015c6b3fe2e9da29 /src/plugins/designer/cpp/formclasswizarddialog.cpp | |
parent | 5b5bea0c142064f88ad65220730e04ebb33623ca (diff) | |
download | qt-creator-55f625465d259ed4a85145aabeddfe9b840058f1.tar.gz |
Introduce BaseFileWizard
Introduce BaseFileWizard and derive all File Wizards from that.
Change BaseFileWizardFactory::create(...) to return a BaseFileWizard.
Change-Id: Ic0cb9e9d0390045dab57cd1a75a0f839c1f90216
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/designer/cpp/formclasswizarddialog.cpp')
-rw-r--r-- | src/plugins/designer/cpp/formclasswizarddialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/designer/cpp/formclasswizarddialog.cpp b/src/plugins/designer/cpp/formclasswizarddialog.cpp index 1b2b3eaa2b..6ca91ac133 100644 --- a/src/plugins/designer/cpp/formclasswizarddialog.cpp +++ b/src/plugins/designer/cpp/formclasswizarddialog.cpp @@ -44,7 +44,7 @@ namespace Internal { // ----------------- FormClassWizardDialog FormClassWizardDialog::FormClassWizardDialog(const WizardPageList &extensionPages, QWidget *parent) : - Utils::Wizard(parent), + Core::BaseFileWizard(parent), m_formPage(new FormTemplateWizardPage), m_classPage(new FormClassWizardPage) { |