summaryrefslogtreecommitdiff
path: root/src/location/labs/qmappolylineobject_p_p.h
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2022-09-10 23:16:36 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2022-09-12 11:58:27 +0200
commit08f7958e9aebd6d1b827547623c94f6705bea7c2 (patch)
tree2cc9770e5268b499e9a6b8d9aa11a677946c2801 /src/location/labs/qmappolylineobject_p_p.h
parenta8cbbeb3ab8b60a252ab1ef89c15e12bee15888a (diff)
downloadqtlocation-08f7958e9aebd6d1b827547623c94f6705bea7c2.tar.gz
Cleanup: remove virtual keyword from overrides
Change-Id: Iac3ac030809f57cfcffbfcc3257551efb6c1ff0f Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'src/location/labs/qmappolylineobject_p_p.h')
-rw-r--r--src/location/labs/qmappolylineobject_p_p.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/location/labs/qmappolylineobject_p_p.h b/src/location/labs/qmappolylineobject_p_p.h
index ddf057fa..08edcac8 100644
--- a/src/location/labs/qmappolylineobject_p_p.h
+++ b/src/location/labs/qmappolylineobject_p_p.h
@@ -65,7 +65,7 @@ public:
QMapPolylineObjectPrivate(QGeoMapObject *q);
~QMapPolylineObjectPrivate() override;
- virtual QGeoMapObject::Type type() const override final;
+ QGeoMapObject::Type type() const override final;
virtual QList<QGeoCoordinate> path() const = 0;
virtual void setPath(const QList<QGeoCoordinate> &path) = 0;
@@ -76,8 +76,8 @@ public:
// QGeoMapObjectPrivate interface
bool equals(const QGeoMapObjectPrivate &other) const override;
- virtual QGeoShape geoShape() const override;
- virtual void setGeoShape(const QGeoShape &shape) override;
+ QGeoShape geoShape() const override;
+ void setGeoShape(const QGeoShape &shape) override;
};
class Q_LOCATION_PRIVATE_EXPORT QMapPolylineObjectPrivateDefault : public QMapPolylineObjectPrivate