forked from qt-creator/qt-creator
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>
This commit is contained in:
@@ -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));
|
||||
|
||||
@@ -47,7 +47,7 @@ namespace PythonEditor {
|
||||
*/
|
||||
FileWizard::FileWizard()
|
||||
{
|
||||
setWizardKind(Core::IWizard::FileWizard);
|
||||
setWizardKind(Core::IWizardFactory::FileWizard);
|
||||
setId(QLatin1String(Constants::C_PY_SOURCE_WIZARD_ID));
|
||||
setCategory(QLatin1String(Constants::C_PY_WIZARD_CATEGORY));
|
||||
setDisplayCategory(QLatin1String(Constants::C_PY_DISPLAY_CATEGORY));
|
||||
|
||||
Reference in New Issue
Block a user