summaryrefslogtreecommitdiffstats
path: root/src/mixer
diff options
context:
space:
mode:
authorJan Holthuis <jholthuis@mixxx.org>2021-12-24 01:56:39 +0100
committerJan Holthuis <jholthuis@mixxx.org>2021-12-24 02:30:47 +0100
commitbab830e646fee97a11a4b329e65ccf64c979a61e (patch)
treeee4bcd5592e8420d8eb9e40257229ed72a441b48 /src/mixer
parentecab893971021cb2054c807bd1b5d47c9fdc99a6 (diff)
BasePlayer: Add missing const qualifier to getGroup() method
Diffstat (limited to 'src/mixer')
-rw-r--r--src/mixer/baseplayer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mixer/baseplayer.h b/src/mixer/baseplayer.h
index ae7905ce95..e6cf1ba102 100644
--- a/src/mixer/baseplayer.h
+++ b/src/mixer/baseplayer.h
@@ -9,7 +9,7 @@ class BasePlayer : public QObject {
BasePlayer(QObject* pParent, const QString& group);
~BasePlayer() override = default;
- inline const QString& getGroup() {
+ inline const QString& getGroup() const {
return m_group;
}