aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Funk <kfunk@kde.org>2017-09-20 20:57:49 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-22 11:09:22 +0000
commit11f867f0d1d8758852579756f506f04b2e00ae56 (patch)
treed52ce0419066466c29bb94ff230d57e869a43405
parentf8a95f991b019ce7b1da389ebb5e68c38d35c29f (diff)
Replace Q_DECL_OVERRIDE with override
Change-Id: I448f2cf49e3433af550d2f36f72b55e41cd67025 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
-rw-r--r--src/virtualkeyboard/inputselectionhandle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/virtualkeyboard/inputselectionhandle.h b/src/virtualkeyboard/inputselectionhandle.h
index e4c3e910..5d70df2b 100644
--- a/src/virtualkeyboard/inputselectionhandle.h
+++ b/src/virtualkeyboard/inputselectionhandle.h
@@ -49,8 +49,8 @@ public:
void applyImage(const QSize &windowSize);
protected:
- void paintEvent(QPaintEvent *pe) Q_DECL_OVERRIDE;
- bool event(QEvent *event) Q_DECL_OVERRIDE;
+ void paintEvent(QPaintEvent *pe) override;
+ bool event(QEvent *event) override;
private:
DesktopInputSelectionControl *m_control;