diff options
author | Alexander Volkov <avolkov@astralinux.ru> | 2020-06-11 17:16:40 +0300 |
---|---|---|
committer | Alexander Volkov <avolkov@astralinux.ru> | 2020-06-29 14:13:56 +0300 |
commit | 76c0963f280484adaf859958b7d7017ddc4dc5da (patch) | |
tree | ad67077f70ece9584f83c0d50e54f7bbfb694f73 /src/location/declarativemaps/qdeclarativegeocodemodel_p.h | |
parent | ffee803f1099f85082a152791a7a3b261947a751 (diff) | |
download | qtlocation-76c0963f280484adaf859958b7d7017ddc4dc5da.tar.gz |
Add missing override
Change-Id: Ieae01bc4669cdd503f97399c622989795a0ad734
Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src/location/declarativemaps/qdeclarativegeocodemodel_p.h')
-rw-r--r-- | src/location/declarativemaps/qdeclarativegeocodemodel_p.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/location/declarativemaps/qdeclarativegeocodemodel_p.h b/src/location/declarativemaps/qdeclarativegeocodemodel_p.h index e2361045..a1454337 100644 --- a/src/location/declarativemaps/qdeclarativegeocodemodel_p.h +++ b/src/location/declarativemaps/qdeclarativegeocodemodel_p.h @@ -116,13 +116,13 @@ public: virtual ~QDeclarativeGeocodeModel(); // From QQmlParserStatus - virtual void classBegin() {} - virtual void componentComplete(); + void classBegin() override {} + void componentComplete() override; // From QAbstractListModel - virtual int rowCount(const QModelIndex &parent) const; - virtual QVariant data(const QModelIndex &index, int role) const; - virtual QHash<int,QByteArray> roleNames() const; + int rowCount(const QModelIndex &parent) const override; + QVariant data(const QModelIndex &index, int role) const override; + QHash<int,QByteArray> roleNames() const override; void setPlugin(QDeclarativeGeoServiceProvider *plugin); QDeclarativeGeoServiceProvider *plugin() const; |