summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@theqtcompany.com>2015-03-03 23:48:09 +0100
committerAlex Blasche <alexander.blasche@theqtcompany.com>2015-03-20 14:13:21 +0000
commitb35e560ee5bf6d2e3e06bc5b3fa5a78ee2601598 (patch)
tree3ee8b3e3f3f2f4b4728040b0c1c660dc16a4fac9 /src
parentf915542ba38d830e3ffdf409bea55f46832421f3 (diff)
downloadqtlocation-b35e560ee5bf6d2e3e06bc5b3fa5a78ee2601598.tar.gz
Add missing Q_DECL_OVERRIDE to qdeclarativegeomap_p.h
Change-Id: I979dafe7da3cde3d39381d70bf196f11e27f1a5d Reviewed-by: Alex Blasche <alexander.blasche@theqtcompany.com>
Diffstat (limited to 'src')
-rw-r--r--src/imports/location/qdeclarativegeomap_p.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/imports/location/qdeclarativegeomap_p.h b/src/imports/location/qdeclarativegeomap_p.h
index ce5abdfb..a24c3441 100644
--- a/src/imports/location/qdeclarativegeomap_p.h
+++ b/src/imports/location/qdeclarativegeomap_p.h
@@ -160,15 +160,15 @@ public:
QGeoServiceProvider::Error error() const;
protected:
- void mousePressEvent(QMouseEvent *event);
- void mouseMoveEvent(QMouseEvent *event);
- void mouseReleaseEvent(QMouseEvent *event);
- void mouseUngrabEvent();
+ void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE ;
+ void mouseMoveEvent(QMouseEvent *event) Q_DECL_OVERRIDE ;
+ void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE ;
+ void mouseUngrabEvent() Q_DECL_OVERRIDE ;
- void touchEvent(QTouchEvent *event);
- void wheelEvent(QWheelEvent *event);
+ void touchEvent(QTouchEvent *event) Q_DECL_OVERRIDE ;
+ void wheelEvent(QWheelEvent *event) Q_DECL_OVERRIDE ;
- bool childMouseEventFilter(QQuickItem *item, QEvent *event);
+ bool childMouseEventFilter(QQuickItem *item, QEvent *event) Q_DECL_OVERRIDE;
Q_SIGNALS:
void wheelAngleChanged(QPoint angleDelta);