summaryrefslogtreecommitdiffstats
path: root/src/channelwidget.cc
diff options
context:
space:
mode:
authorColin Guthrie <cguthrie@mandriva.org>2009-03-16 19:57:31 +0000
committerColin Guthrie <cguthrie@mandriva.org>2009-06-17 08:54:10 +0100
commit7b7a12f1d2e6e02b11b7649b394d2122eec57813 (patch)
treec38d0ec7b57c096d1be5e5010ad9ae7fb54b3a3a /src/channelwidget.cc
parente509205be255da3779377f12858598755581691b (diff)
Adapt to new UI
The actual wiring up of events and clearing out of old, unused elements is not complete yet, so this is completely non-functional at present.
Diffstat (limited to 'src/channelwidget.cc')
-rw-r--r--src/channelwidget.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/channelwidget.cc b/src/channelwidget.cc
index eac41ad..7914f6b 100644
--- a/src/channelwidget.cc
+++ b/src/channelwidget.cc
@@ -23,7 +23,7 @@
#endif
#include "channelwidget.h"
-#include "streamwidget.h"
+#include "minimalstreamwidget.h"
#include "i18n.h"
@@ -83,11 +83,11 @@ void ChannelWidget::onVolumeScaleValueChanged() {
if (!volumeScaleEnabled)
return;
- if (streamWidget->updating)
+ if (minimalStreamWidget->updating)
return;
pa_volume_t volume = (pa_volume_t) ((volumeScale->get_value() * PA_VOLUME_NORM) / 100);
- streamWidget->updateChannelVolume(channel, volume);
+ minimalStreamWidget->updateChannelVolume(channel, volume);
if (beepDevice != "") {
ca_context_change_device(ca_gtk_context_get(), beepDevice.c_str());