summaryrefslogtreecommitdiffstats
path: root/plugins/alsa-sound/alsa-mixer-element.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/alsa-sound/alsa-mixer-element.cpp')
-rw-r--r--plugins/alsa-sound/alsa-mixer-element.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/alsa-sound/alsa-mixer-element.cpp b/plugins/alsa-sound/alsa-mixer-element.cpp
index 53a7216..12a48f2 100644
--- a/plugins/alsa-sound/alsa-mixer-element.cpp
+++ b/plugins/alsa-sound/alsa-mixer-element.cpp
@@ -34,33 +34,33 @@ QAlsaMixerElement::QAlsaMixerElement(TQWidget *parent, const TQString &label, bo
setLabel(label);
setVolume(0);
- TQObject::connect(m_spinboxVolume, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT (slotSpinboxValueChanged(int)));
- TQObject::connect(m_sliderVolume, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT (slotSliderValueChanged(int)));
+ TQObject::connect(m_spinboxVolume, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT (slotSpinboxValueChanged(int)));
+ TQObject::connect(m_sliderVolume, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT (slotSliderValueChanged(int)));
if (m_HasVolume) {
- TQObject::connect(m_checkboxOverride, TQT_SIGNAL(toggled(bool)),
- m_spinboxVolume, TQT_SLOT (setEnabled(bool)));
- TQObject::connect(m_checkboxOverride, TQT_SIGNAL(toggled(bool)),
- m_sliderVolume, TQT_SLOT (setEnabled(bool)));
+ TQObject::connect(m_checkboxOverride, TQ_SIGNAL(toggled(bool)),
+ m_spinboxVolume, TQ_SLOT (setEnabled(bool)));
+ TQObject::connect(m_checkboxOverride, TQ_SIGNAL(toggled(bool)),
+ m_sliderVolume, TQ_SLOT (setEnabled(bool)));
} else {
m_spinboxVolume->hide();
m_sliderVolume->hide();
}
if (m_HasSwitch) {
- TQObject::connect(m_checkboxOverride, TQT_SIGNAL(toggled(bool)),
- m_checkboxActive, TQT_SLOT (setEnabled(bool)));
+ TQObject::connect(m_checkboxOverride, TQ_SIGNAL(toggled(bool)),
+ m_checkboxActive, TQ_SLOT (setEnabled(bool)));
} else {
//m_checkboxActive->hide();
m_checkboxActive->setEnabled(false);
m_checkboxActive->setChecked(true);
}
- connect(m_checkboxOverride, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotSetDirty()));
- connect(m_checkboxActive, TQT_SIGNAL(toggled(bool)), this, TQT_SLOT(slotSetDirty()));
- connect(m_spinboxVolume, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotSetDirty()));
- connect(m_sliderVolume, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotSetDirty()));
+ connect(m_checkboxOverride, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotSetDirty()));
+ connect(m_checkboxActive, TQ_SIGNAL(toggled(bool)), this, TQ_SLOT(slotSetDirty()));
+ connect(m_spinboxVolume, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(slotSetDirty()));
+ connect(m_sliderVolume, TQ_SIGNAL(valueChanged(int)), this, TQ_SLOT(slotSetDirty()));
}