aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectfilewizardextension.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@nokia.com>2011-04-15 17:05:56 +0200
committerTobias Hunger <tobias.hunger@nokia.com>2011-04-15 17:45:32 +0200
commitef4fa24b34ab0550d6b23d9ccfd2968fafe2e0f3 (patch)
treedb3185a55f21d7301a6c792976487f18f16645f0 /src/plugins/projectexplorer/projectfilewizardextension.h
parent672f44d026bd428901b9f312d0b1468fd4e870c6 (diff)
Cleanup: Remove unnecessary virtual keywords
Diffstat (limited to 'src/plugins/projectexplorer/projectfilewizardextension.h')
-rw-r--r--src/plugins/projectexplorer/projectfilewizardextension.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/plugins/projectexplorer/projectfilewizardextension.h b/src/plugins/projectexplorer/projectfilewizardextension.h
index ba27a21e89..436b8afeb3 100644
--- a/src/plugins/projectexplorer/projectfilewizardextension.h
+++ b/src/plugins/projectexplorer/projectfilewizardextension.h
@@ -46,14 +46,14 @@ class ProjectFileWizardExtension : public Core::IFileWizardExtension
Q_OBJECT
public:
explicit ProjectFileWizardExtension();
- virtual ~ProjectFileWizardExtension();
+ ~ProjectFileWizardExtension();
- virtual QList<QWizardPage *> extensionPages(const Core::IWizard *wizard);
- virtual bool process(const QList<Core::GeneratedFile> &files,
- bool *removeOpenProjectAttribute, QString *errorMessage);
+ QList<QWizardPage *> extensionPages(const Core::IWizard *wizard);
+ bool process(const QList<Core::GeneratedFile> &files,
+ bool *removeOpenProjectAttribute, QString *errorMessage);
public slots:
- virtual void firstExtensionPageShown(const QList<Core::GeneratedFile> &files);
+ void firstExtensionPageShown(const QList<Core::GeneratedFile> &files);
private:
void initProjectChoices(const QString &generatedProjectFilePath);