Wizards: Remove 'virtual' from method that should not be implemented

runWizard was the entry point for wizards once, but nowadays you should
implement runWizardImpl in subclasses.

Change-Id: If7cc501a64b366306f60c9d30e0d9052660e6c30
Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
This commit is contained in:
Eike Ziller
2016-09-26 13:59:50 +02:00
parent d2d86bf9eb
commit a6264dfd94

View File

@@ -84,8 +84,8 @@ public:
QString runPath(const QString &defaultPath); QString runPath(const QString &defaultPath);
// Does bookkeeping and the calls runWizardImpl. Please implement that. // Does bookkeeping and the calls runWizardImpl. Please implement that.
virtual Utils::Wizard *runWizard(const QString &path, QWidget *parent, Id platform, Utils::Wizard *runWizard(const QString &path, QWidget *parent, Id platform,
const QVariantMap &variables); const QVariantMap &variables);
virtual bool isAvailable(Id platformId) const; virtual bool isAvailable(Id platformId) const;
QSet<Id> supportedPlatforms() const; QSet<Id> supportedPlatforms() const;