aboutsummaryrefslogtreecommitdiffstats
path: root/app/mixer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'app/mixer.cpp')
-rw-r--r--app/mixer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/mixer.cpp b/app/mixer.cpp
index 873f1be..fae2e6a 100644
--- a/app/mixer.cpp
+++ b/app/mixer.cpp
@@ -120,7 +120,8 @@ void Mixer::onClientEventReceived(QString eventName, const QJsonValue& data)
int value = data.toObject()["value"].toDouble() * 100;
value = qBound(0, value, 100);
- for (AudioRole *ar : m_roles) {
+ for (QObject *o : m_roles) {
+ AudioRole *ar = static_cast<AudioRole*>(o);
if (ar->Name() == name) {
ar->BeginUpdate();
ar->setValue(value);