summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJeremy LUGAGNE <j.lugagne@tadaweb.com>2018-01-22 14:44:35 +0100
committerSérgio Martins <sergio.martins@kdab.com>2018-01-22 13:52:34 +0000
commitc561c3b8b473d1b0f3557f8d8d89a7c37f847d5d (patch)
treec01b66fae347799644e6cd275364ca52a3a6374c /src
parent6c3f864ec00c4e20a05f60032048e9fe2c7e116c (diff)
Fix -developer-build due to missing Q_DECL_OVERRIDE
Change-Id: Ie7a2ff0e42131afef1bdec853d09c3b447f9748c Reviewed-by: Sérgio Martins <sergio.martins@kdab.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/platforms/offscreen/qoffscreenintegration.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/platforms/offscreen/qoffscreenintegration.h b/src/plugins/platforms/offscreen/qoffscreenintegration.h
index f72587d11a..154a420e3d 100644
--- a/src/plugins/platforms/offscreen/qoffscreenintegration.h
+++ b/src/plugins/platforms/offscreen/qoffscreenintegration.h
@@ -69,8 +69,8 @@ public:
QPlatformFontDatabase *fontDatabase() const Q_DECL_OVERRIDE;
QAbstractEventDispatcher *createEventDispatcher() const Q_DECL_OVERRIDE;
- QStringList themeNames() const;
- QPlatformTheme *createPlatformTheme(const QString &name) const;
+ QStringList themeNames() const Q_DECL_OVERRIDE;
+ QPlatformTheme *createPlatformTheme(const QString &name) const Q_DECL_OVERRIDE;
static QOffscreenIntegration *createOffscreenIntegration();