summaryrefslogtreecommitdiff
path: root/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-05-26 16:58:50 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-06-05 10:56:27 +0200
commit9356432305aace30e43ed403049355168d7b7fa2 (patch)
tree476fbec4261e355213dd1e1c07dd8c61f97ec046 /src/plugins/pythoneditor/wizard/pythonfilewizard.cpp
parent857ebee2d5e2741180399a4948feb0fc9d656a6e (diff)
downloadqt-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/pythonfilewizard.cpp')
-rw-r--r--src/plugins/pythoneditor/wizard/pythonfilewizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp b/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp
index 5758659447..7267a167f9 100644
--- a/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp
+++ b/src/plugins/pythoneditor/wizard/pythonfilewizard.cpp
@@ -84,7 +84,7 @@ Core::GeneratedFiles FileWizard::generateFiles(const QWizard *dialog,
QString folder = pWizard->path();
QString name = pWizard->fileName();
- name = Core::BaseFileWizard::buildFileName(
+ name = Core::BaseFileWizardFactory::buildFileName(
folder, name, QLatin1String(Constants::C_PY_EXTENSION));
Core::GeneratedFile file(name);
file.setContents(QLatin1String(Constants::C_PY_SOURCE_CONTENT));