From 9356432305aace30e43ed403049355168d7b7fa2 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Mon, 26 May 2014 16:58:50 +0200 Subject: IWizardFactory: Rename BaseFileWizard to BaseFileWizardFactory Change-Id: I92977422bf8088b53e920370737907d60cf8708b Reviewed-by: Orgad Shaneh --- src/plugins/pythoneditor/wizard/pythonclasswizard.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/plugins/pythoneditor/wizard/pythonclasswizard.cpp') 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(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); -- cgit v1.2.1