summaryrefslogtreecommitdiffstats
path: root/src/charts/glwidget_p.h
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-09-20 20:57:38 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-21 14:02:23 +0000
commitcca401d422961afe561111aceb926ea95944d87d (patch)
treeaa8ed4e09f6acb39304b4f0b3d695c2f723c000e /src/charts/glwidget_p.h
parent770fe80da346fd467878c2a04f17efa63505a51d (diff)
Replace Q_DECL_OVERRIDE with override
Change-Id: I59e8b40c2d3b913fcc3b05106aef33788b7a3596 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@qt.io>
Diffstat (limited to 'src/charts/glwidget_p.h')
-rw-r--r--src/charts/glwidget_p.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/charts/glwidget_p.h b/src/charts/glwidget_p.h
index f80575bf..f2e85a34 100644
--- a/src/charts/glwidget_p.h
+++ b/src/charts/glwidget_p.h
@@ -73,13 +73,13 @@ public Q_SLOTS:
void cleanXYSeriesResources(const QXYSeries *series);
protected:
- void initializeGL() Q_DECL_OVERRIDE;
- void paintGL() Q_DECL_OVERRIDE;
- void resizeGL(int width, int height) Q_DECL_OVERRIDE;
- void mouseDoubleClickEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
- void mouseMoveEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
- void mousePressEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
- void mouseReleaseEvent(QMouseEvent *event) Q_DECL_OVERRIDE;
+ void initializeGL() override;
+ void paintGL() override;
+ void resizeGL(int width, int height) override;
+ void mouseDoubleClickEvent(QMouseEvent *event) override;
+ void mouseMoveEvent(QMouseEvent *event) override;
+ void mousePressEvent(QMouseEvent *event) override;
+ void mouseReleaseEvent(QMouseEvent *event) override;
private:
QXYSeries *findSeriesAtEvent(QMouseEvent *event);