From d9bb450ee8898cb810027897a32afd3adcb05d9f Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Tue, 19 Dec 2017 22:39:05 -0800 Subject: mixer: add clearer pulseaudio control naming Use the role name for the control name in the Mixer UI instead of overall vague control description Bug-AGL: SPEC-1196 Change-Id: I34b5c3378fa3bca7464067490907f9ae0adb6364 Signed-off-by: Matt Ranostay --- app/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/main.cpp') diff --git a/app/main.cpp b/app/main.cpp index e93cf0c..bfce498 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -118,8 +118,8 @@ int main(int argc, char *argv[]) QObject::connect(window, SIGNAL(frameSwapped()), qwm, SLOT(slotActivateSurface())); PaControlModel *pacm = mobjs.first()->findChild("pacm"); - QObject::connect(client, SIGNAL(controlAdded(int, QString, int, int, const char *, int)), - pacm, SLOT(addOneControl(int, QString, int, int, const char *, int))); + QObject::connect(client, SIGNAL(controlAdded(int, QString, QString, int, int, const char *, int)), + pacm, SLOT(addOneControl(int, QString, QString, int, int, const char *, int))); QObject::connect(client, SIGNAL(volumeExternallyChanged(uint32_t, uint32_t, uint32_t, uint32_t)), pacm, SLOT(changeExternalVolume(uint32_t, uint32_t, uint32_t, uint32_t))); QObject::connect(pacm, SIGNAL(volumeChanged(uint32_t, uint32_t, uint32_t, uint32_t)), -- cgit 1.2.3-korg