diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2013-01-17 21:51:27 +0200 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@digia.com> | 2013-01-18 11:43:17 +0100 |
commit | 9417bea9acd7184b33adc176c1c5b507126b0c69 (patch) | |
tree | c925edf28bfb8cd0b895bd25878b55529ea292e2 /src/plugins/git/clonewizardpage.h | |
parent | df5cd3d6f59a10af887536a50967b490ee00c091 (diff) | |
download | qt-creator-9417bea9acd7184b33adc176c1c5b507126b0c69.tar.gz |
VCS: Remove superfluous virtual
Change-Id: I105057202091f4b90f7f50eefb3506ee56d4bc1b
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
Diffstat (limited to 'src/plugins/git/clonewizardpage.h')
-rw-r--r-- | src/plugins/git/clonewizardpage.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/git/clonewizardpage.h b/src/plugins/git/clonewizardpage.h index 2b991cb006..62214c7a31 100644 --- a/src/plugins/git/clonewizardpage.h +++ b/src/plugins/git/clonewizardpage.h @@ -49,13 +49,13 @@ class CloneWizardPage : public VcsBase::BaseCheckoutWizardPage Q_PROPERTY(bool deleteMasterBranch READ deleteMasterBranch WRITE setDeleteMasterBranch) public: explicit CloneWizardPage(QWidget *parent = 0); - virtual ~CloneWizardPage(); + ~CloneWizardPage(); QSharedPointer<VcsBase::AbstractCheckoutJob> createCheckoutJob(QString *checkoutPath) const; protected: - virtual QString directoryFromRepository(const QString &r) const; - virtual QStringList branches(const QString &repository, int *current); + QString directoryFromRepository(const QString &r) const; + QStringList branches(const QString &repository, int *current); bool deleteMasterBranch() const; void setDeleteMasterBranch(bool v); |