diff options
author | Kevin Funk <kfunk@kde.org> | 2017-09-20 20:57:45 +0200 |
---|---|---|
committer | Kevin Funk <kevin.funk@kdab.com> | 2017-09-22 07:28:42 +0000 |
commit | e95ba2c62d71d6973f8c7ca00028e41395a1cce7 (patch) | |
tree | 2c5d9c7a7e59b4d96fe00b5213bd3cfd03872e6d /src/controls/Private | |
parent | 55e133fea09e639b4143b663b79f8ecfaf96d4d6 (diff) | |
download | qtquickcontrols-e95ba2c62d71d6973f8c7ca00028e41395a1cce7.tar.gz |
Replace Q_DECL_OVERRIDE with override
Change-Id: I39eb6cd5c6be80b14597b666c6fee05978be26ce
Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/controls/Private')
-rw-r--r-- | src/controls/Private/qquickcalendarmodel_p.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controls/Private/qquickcalendarmodel_p.h b/src/controls/Private/qquickcalendarmodel_p.h index cb47c576..28397e61 100644 --- a/src/controls/Private/qquickcalendarmodel_p.h +++ b/src/controls/Private/qquickcalendarmodel_p.h @@ -69,11 +69,11 @@ public: QLocale locale() const; void setLocale(const QLocale &locale); - QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE; + QVariant data(const QModelIndex &index, int role) const override; - int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE; + int rowCount(const QModelIndex &parent = QModelIndex()) const override; - QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE; + QHash<int, QByteArray> roleNames() const override; Q_INVOKABLE QDate dateAt(int index) const; Q_INVOKABLE int indexAt(const QDate &visibleDate); |