diff options
author | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-02 17:38:42 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-26 11:42:03 +0200 |
commit | a8e8910130ecb59a40e38e3dbca712bb6f8db15f (patch) | |
tree | 37988f031c58eae079a336b7a9272ac927d6fed5 /src/plugins/pythoneditor/wizard/pythonclasswizard.cpp | |
parent | ca41557613d02026113e52703984625b88687023 (diff) | |
download | qt-creator-a8e8910130ecb59a40e38e3dbca712bb6f8db15f.tar.gz |
IWizard->IWizardFactory
Start at splitting up the wizard functionality a bit. Currently
it is a factory but also contains a lot of logic that is invoked by
the real wizard dialogs.
This change renames/moves a couple of things only.
Change-Id: I1fa114ee3ee262f7c0690841f361bbf09e674725
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/pythoneditor/wizard/pythonclasswizard.cpp')
-rw-r--r-- | src/plugins/pythoneditor/wizard/pythonclasswizard.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp index e66487c043..766706a0db 100644 --- a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp +++ b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp @@ -47,7 +47,7 @@ namespace Internal { ClassWizard::ClassWizard() { - setWizardKind(Core::IWizard::FileWizard); + setWizardKind(Core::IWizardFactory::FileWizard); setId(QLatin1String(Constants::C_PY_CLASS_WIZARD_ID)); setCategory(QLatin1String(Constants::C_PY_WIZARD_CATEGORY)); setDisplayCategory(QLatin1String(Constants::C_PY_DISPLAY_CATEGORY)); |