diff options
Diffstat (limited to 'src/plugins/pythoneditor/pythoneditorplugin.cpp')
-rw-r--r-- | src/plugins/pythoneditor/pythoneditorplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/pythoneditor/pythoneditorplugin.cpp b/src/plugins/pythoneditor/pythoneditorplugin.cpp index 65f5d6a0fc..856c0677a7 100644 --- a/src/plugins/pythoneditor/pythoneditorplugin.cpp +++ b/src/plugins/pythoneditor/pythoneditorplugin.cpp @@ -236,8 +236,8 @@ bool PythonEditorPlugin::initialize(const QStringList &arguments, QString *error Core::FileIconProvider::registerIconOverlayForMimeType(icon, C_PY_MIMETYPE); // Add Python files and classes creation dialogs - addAutoReleasedObject(new FileWizard(Core::ICore::instance())); - addAutoReleasedObject(new ClassWizard(Core::ICore::instance())); + addAutoReleasedObject(new FileWizard); + addAutoReleasedObject(new ClassWizard); addAutoReleasedObject(new Internal::PythonHighlighterFactory); return true; |