summaryrefslogtreecommitdiffstats
path: root/src/imports/audioengine
diff options
context:
space:
mode:
authorKevin Funk <kevin.funk@kdab.com>2017-09-20 20:57:43 +0200
committerKevin Funk <kevin.funk@kdab.com>2017-09-22 14:31:24 +0000
commitc4274f6e98e29c1399120bdd8db86770d6bba104 (patch)
tree9c3e905386cd9bf6b01e32cc1835d7263eb9070d /src/imports/audioengine
parentbb6166a5eca14550584bfc4ab4cb4130872df3ad (diff)
Replace Q_DECL_OVERRIDE with override
Change-Id: I17b3650a3df5688274151c1f2c4629e4a5062028 Reviewed-by: Lars Knoll <lars.knoll@qt.io>
Diffstat (limited to 'src/imports/audioengine')
-rw-r--r--src/imports/audioengine/qaudioengine_openal_p.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/imports/audioengine/qaudioengine_openal_p.h b/src/imports/audioengine/qaudioengine_openal_p.h
index c1dbf6aa2..92735ba86 100644
--- a/src/imports/audioengine/qaudioengine_openal_p.h
+++ b/src/imports/audioengine/qaudioengine_openal_p.h
@@ -91,12 +91,12 @@ public:
StaticSoundBufferAL(QObject *parent, const QUrl &url, QSampleCache *sampleLoader);
~StaticSoundBufferAL();
- State state() const Q_DECL_OVERRIDE;
+ State state() const override;
- void load() Q_DECL_OVERRIDE;
+ void load() override;
- void bindToSource(ALuint alSource) Q_DECL_OVERRIDE;
- void unbindFromSource(ALuint alSource) Q_DECL_OVERRIDE;
+ void bindToSource(ALuint alSource) override;
+ void unbindFromSource(ALuint alSource) override;
inline long addRef() { return ++m_ref; }
inline long release() { return --m_ref; }