summaryrefslogtreecommitdiffstats
path: root/src/soundio
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2020-06-05 13:23:07 +0200
committerUwe Klotz <uklotz@mixxx.org>2020-06-05 14:00:05 +0200
commitf5a4df9c84ca247d6eccbcb073b8b2232725bc1f (patch)
tree6a78731942367ce3eb4954352f7c0a343bb37a47 /src/soundio
parentc30e1e61e30fa74616adf22995f90192ad54cf2c (diff)
Add missing `override` specifiers
Diffstat (limited to 'src/soundio')
-rw-r--r--src/soundio/soundmanagerutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soundio/soundmanagerutil.h b/src/soundio/soundmanagerutil.h
index 6cd757e00d..bbd59c55f0 100644
--- a/src/soundio/soundmanagerutil.h
+++ b/src/soundio/soundmanagerutil.h
@@ -112,7 +112,7 @@ class AudioOutput : public AudioPath {
static QList<AudioPathType> getSupportedTypes();
bool isHidden();
protected:
- void setType(AudioPathType type);
+ void setType(AudioPathType type) override;
};
// This class is required to add the buffer, without changing the hash used as ID
@@ -143,7 +143,7 @@ class AudioInput : public AudioPath {
static AudioInput fromXML(const QDomElement &xml);
static QList<AudioPathType> getSupportedTypes();
protected:
- void setType(AudioPathType type);
+ void setType(AudioPathType type) override;
};
// This class is required to add the buffer, without changing the hash used as