summaryrefslogtreecommitdiff
path: root/src/plugins/coreplugin/ifilewizardextension.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-05-02 17:38:42 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-05-26 11:42:03 +0200
commita8e8910130ecb59a40e38e3dbca712bb6f8db15f (patch)
tree37988f031c58eae079a336b7a9272ac927d6fed5 /src/plugins/coreplugin/ifilewizardextension.h
parentca41557613d02026113e52703984625b88687023 (diff)
downloadqt-creator-a8e8910130ecb59a40e38e3dbca712bb6f8db15f.tar.gz
IWizard->IWizardFactory
Start at splitting up the wizard functionality a bit. Currently it is a factory but also contains a lot of logic that is invoked by the real wizard dialogs. This change renames/moves a couple of things only. Change-Id: I1fa114ee3ee262f7c0690841f361bbf09e674725 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/coreplugin/ifilewizardextension.h')
-rw-r--r--src/plugins/coreplugin/ifilewizardextension.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/coreplugin/ifilewizardextension.h b/src/plugins/coreplugin/ifilewizardextension.h
index b718c7a976..595f8f173e 100644
--- a/src/plugins/coreplugin/ifilewizardextension.h
+++ b/src/plugins/coreplugin/ifilewizardextension.h
@@ -42,7 +42,7 @@ QT_END_NAMESPACE
namespace Core {
-class IWizard;
+class IWizardFactory;
class GeneratedFile;
/*!
@@ -55,7 +55,7 @@ class CORE_EXPORT IFileWizardExtension : public QObject
public:
/* Return a list of pages to be added to the Wizard (empty list if not
* applicable). */
- virtual QList<QWizardPage *> extensionPages(const IWizard *wizard) = 0;
+ virtual QList<QWizardPage *> extensionPages(const IWizardFactory *wizard) = 0;
/* Process the files using the extension parameters */
virtual bool processFiles(const QList<GeneratedFile> &files,