summaryrefslogtreecommitdiff
path: root/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/pythoneditor/wizard/pythonclasswizard.cpp')
-rw-r--r--src/plugins/pythoneditor/wizard/pythonclasswizard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp
index 02d873299d..ac569f1093 100644
--- a/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp
+++ b/src/plugins/pythoneditor/wizard/pythonclasswizard.cpp
@@ -59,7 +59,7 @@ Core::BaseFileWizard *ClassWizard::create(QWidget *parent, const Core::WizardDia
{
ClassWizardDialog *wizard = new ClassWizardDialog(parent);
foreach (QWizardPage *p, parameters.extensionPages())
- BaseFileWizardFactory::applyExtensionPageShortTitle(wizard, wizard->addPage(p));
+ wizard->addPage(p);
wizard->setPath(parameters.defaultPath());
wizard->setExtraValues(parameters.extraValues());
return wizard;