diff options
| author | Tobias Hunger <tobias.hunger@digia.com> | 2014-05-26 16:58:50 +0200 |
|---|---|---|
| committer | Tobias Hunger <tobias.hunger@digia.com> | 2014-06-05 10:56:27 +0200 |
| commit | 9356432305aace30e43ed403049355168d7b7fa2 (patch) | |
| tree | 476fbec4261e355213dd1e1c07dd8c61f97ec046 /src/plugins/pythoneditor/wizard/pythonclasswizard.cpp | |
| parent | 857ebee2d5e2741180399a4948feb0fc9d656a6e (diff) | |
| download | qt-creator-9356432305aace30e43ed403049355168d7b7fa2.tar.gz | |
IWizardFactory: Rename BaseFileWizard to BaseFileWizardFactory
Change-Id: I92977422bf8088b53e920370737907d60cf8708b
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp index 766706a0db..dc112c5b78 100644 --- a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp +++ b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp @@ -61,7 +61,7 @@ QWizard *ClassWizard::createWizardDialog( { ClassWizardDialog *wizard = new ClassWizardDialog(parent); foreach (QWizardPage *p, params.extensionPages()) - BaseFileWizard::applyExtensionPageShortTitle(wizard, wizard->addPage(p)); + BaseFileWizardFactory::applyExtensionPageShortTitle(wizard, wizard->addPage(p)); wizard->setPath(params.defaultPath()); wizard->setExtraValues(params.extraValues()); return wizard; @@ -75,7 +75,7 @@ Core::GeneratedFiles ClassWizard::generateFiles(const QWizard *w, const ClassWizardDialog *wizard = qobject_cast<const ClassWizardDialog *>(w); const ClassWizardParameters params = wizard->parameters(); - const QString fileName = Core::BaseFileWizard::buildFileName( + const QString fileName = Core::BaseFileWizardFactory::buildFileName( params.path, params.fileName, QLatin1String(Constants::C_PY_EXTENSION)); Core::GeneratedFile sourceFile(fileName); |
