summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets')
-rw-r--r--src/gui/widgets/AudioFaderBox.cpp8
-rw-r--r--src/gui/widgets/AudioRouteMenu.cpp8
-rw-r--r--src/gui/widgets/CollapsingFrame.cpp2
-rw-r--r--src/gui/widgets/ColourTable.cpp4
-rw-r--r--src/gui/widgets/CurrentProgressDialog.cpp4
-rw-r--r--src/gui/widgets/DiatonicPitchChooser.cpp48
-rw-r--r--src/gui/widgets/Fader.cpp6
-rw-r--r--src/gui/widgets/HSpinBox.cpp2
-rw-r--r--src/gui/widgets/PitchChooser.cpp28
-rw-r--r--src/gui/widgets/PluginControl.cpp4
-rw-r--r--src/gui/widgets/ProgressDialog.cpp8
-rw-r--r--src/gui/widgets/QuantizeParameters.cpp6
-rw-r--r--src/gui/widgets/Rotary.cpp8
-rw-r--r--src/gui/widgets/TimeWidget.cpp32
-rw-r--r--src/gui/widgets/VUMeter.cpp16
15 files changed, 92 insertions, 92 deletions
diff --git a/src/gui/widgets/AudioFaderBox.cpp b/src/gui/widgets/AudioFaderBox.cpp
index 5103719..3a0ebc3 100644
--- a/src/gui/widgets/AudioFaderBox.cpp
+++ b/src/gui/widgets/AudioFaderBox.cpp
@@ -81,8 +81,8 @@ AudioFaderBox::AudioFaderBox(TQWidget *parent,
m_plugins.push_back(plugin);
m_signalMapper->setMapping(plugin, i);
- connect(plugin, TQT_SIGNAL(clicked()),
- m_signalMapper, TQT_SLOT(map()));
+ connect(plugin, TQ_SIGNAL(clicked()),
+ m_signalMapper, TQ_SLOT(map()));
}
m_synthButton = new TQPushButton(this);
@@ -127,8 +127,8 @@ AudioFaderBox::AudioFaderBox(TQWidget *parent,
m_stereoButton->setPixmap(m_monoPixmap); // default is mono
m_stereoButton->setFixedSize(24, 24);
- connect(m_stereoButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotChannelStateChanged()));
+ connect(m_stereoButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotChannelStateChanged()));
m_synthGUIButton = new TQPushButton(this);
m_synthGUIButton->setText(i18n("Editor"));
diff --git a/src/gui/widgets/AudioRouteMenu.cpp b/src/gui/widgets/AudioRouteMenu.cpp
index 02d33ba..7b2b120 100644
--- a/src/gui/widgets/AudioRouteMenu.cpp
+++ b/src/gui/widgets/AudioRouteMenu.cpp
@@ -58,15 +58,15 @@ AudioRouteMenu::AudioRouteMenu(TQWidget *par,
case Compact: {
m_combo = 0;
m_button = new WheelyButton(par);
- connect(m_button, TQT_SIGNAL(wheel(bool)), this, TQT_SLOT(slotWheel(bool)));
- connect(m_button, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotShowMenu()));
+ connect(m_button, TQ_SIGNAL(wheel(bool)), this, TQ_SLOT(slotWheel(bool)));
+ connect(m_button, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotShowMenu()));
break;
}
case Regular: {
m_button = 0;
m_combo = new KComboBox(par);
- connect(m_combo, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotEntrySelected(int)));
+ connect(m_combo, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotEntrySelected(int)));
break;
}
@@ -135,7 +135,7 @@ AudioRouteMenu::slotShowMenu()
for (int i = 0; i < getNumEntries(); ++i) {
- menu->insertItem(getEntryText(i), this, TQT_SLOT(slotEntrySelected(int)),
+ menu->insertItem(getEntryText(i), this, TQ_SLOT(slotEntrySelected(int)),
0, i);
menu->setItemParameter(i, i);
}
diff --git a/src/gui/widgets/CollapsingFrame.cpp b/src/gui/widgets/CollapsingFrame.cpp
index f34cc99..dddf415 100644
--- a/src/gui/widgets/CollapsingFrame.cpp
+++ b/src/gui/widgets/CollapsingFrame.cpp
@@ -62,7 +62,7 @@ CollapsingFrame::CollapsingFrame(TQString label, TQWidget *parent, const char *n
TQPixmap pixmap(pixmapDir + "/misc/arrow-expanded.png");
m_toggleButton->setIconSet(pixmap);
- connect(m_toggleButton, TQT_SIGNAL(clicked()), this, TQT_SLOT(toggle()));
+ connect(m_toggleButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(toggle()));
m_layout->addMultiCellWidget(m_toggleButton, 0, 0, 0, 2);
}
diff --git a/src/gui/widgets/ColourTable.cpp b/src/gui/widgets/ColourTable.cpp
index 503e1d2..4845b9c 100644
--- a/src/gui/widgets/ColourTable.cpp
+++ b/src/gui/widgets/ColourTable.cpp
@@ -49,8 +49,8 @@ ColourTable::ColourTable
horizontalHeader()->setLabel(0, i18n("Name"));
horizontalHeader()->setLabel(1, i18n("Color"));
populate_table(input, list);
- connect(this, TQT_SIGNAL(doubleClicked(int, int, int, const TQPoint&)),
- TQT_SLOT(slotEditEntry(int, int)));
+ connect(this, TQ_SIGNAL(doubleClicked(int, int, int, const TQPoint&)),
+ TQ_SLOT(slotEditEntry(int, int)));
}
diff --git a/src/gui/widgets/CurrentProgressDialog.cpp b/src/gui/widgets/CurrentProgressDialog.cpp
index b3d1c3c..7c85993 100644
--- a/src/gui/widgets/CurrentProgressDialog.cpp
+++ b/src/gui/widgets/CurrentProgressDialog.cpp
@@ -54,8 +54,8 @@ CurrentProgressDialog::set(ProgressDialog* d)
m_currentProgressDialog = d;
// this lets the progress dialog deregister itself when it's deleted
- connect(d, TQT_SIGNAL(destroyed()),
- getInstance(), TQT_SLOT(slotCurrentProgressDialogDestroyed()));
+ connect(d, TQ_SIGNAL(destroyed()),
+ getInstance(), TQ_SLOT(slotCurrentProgressDialogDestroyed()));
}
void CurrentProgressDialog::freeze()
diff --git a/src/gui/widgets/DiatonicPitchChooser.cpp b/src/gui/widgets/DiatonicPitchChooser.cpp
index aae228b..d58fbe8 100644
--- a/src/gui/widgets/DiatonicPitchChooser.cpp
+++ b/src/gui/widgets/DiatonicPitchChooser.cpp
@@ -89,41 +89,41 @@ DiatonicPitchChooser::DiatonicPitchChooser(TQString title,
m_pitchLabel->setMinimumWidth(40);
- connect(m_accidental, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSetAccidental(int)));
+ connect(m_accidental, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSetAccidental(int)));
- connect(m_octave, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSetOctave(int)));
+ connect(m_octave, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSetOctave(int)));
- connect(m_step, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotSetStep(int)));
+ connect(m_step, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotSetStep(int)));
- //connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- // this, TQT_SIGNAL(pitchChanged(int)));
+ //connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ // this, TQ_SIGNAL(pitchChanged(int)));
- //connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- // this, TQT_SIGNAL(preview(int)));
+ //connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ // this, TQ_SIGNAL(preview(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchDragged(int,int,int)),
- this, TQT_SLOT(slotSetNote(int,int,int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchDragged(int,int,int)),
+ this, TQ_SLOT(slotSetNote(int,int,int)));
- //connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)),
- // this, TQT_SLOT(slotSetPitch(int)));
+ //connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int)),
+ // this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int,int,int)),
- this, TQT_SLOT(slotSetNote(int,int,int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int,int,int)),
+ this, TQ_SLOT(slotSetNote(int,int,int)));
- //connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)),
- // this, TQT_SIGNAL(pitchChanged(int)));
+ //connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int)),
+ // this, TQ_SIGNAL(pitchChanged(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchDragged(int,int,int)),
- this, TQT_SIGNAL(noteChanged(int,int,int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchDragged(int,int,int)),
+ this, TQ_SIGNAL(noteChanged(int,int,int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int,int,int)),
- this, TQT_SIGNAL(noteChanged(int,int,int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int,int,int)),
+ this, TQ_SIGNAL(noteChanged(int,int,int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(preview(int)),
- this, TQT_SIGNAL(preview(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(preview(int)),
+ this, TQ_SIGNAL(preview(int)));
}
diff --git a/src/gui/widgets/Fader.cpp b/src/gui/widgets/Fader.cpp
index d7a24ea..f3cad71 100644
--- a/src/gui/widgets/Fader.cpp
+++ b/src/gui/widgets/Fader.cpp
@@ -76,7 +76,7 @@ Fader::Fader(AudioLevel::FaderType type,
calculateGroovePixmap();
setFader(0.0);
- connect(m_floatTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotFloatTimeout()));
+ connect(m_floatTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotFloatTimeout()));
m_float->hide();
}
@@ -113,7 +113,7 @@ Fader::Fader(int min, int max, int deflt,
calculateGroovePixmap();
setFader(deflt);
- connect(m_floatTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotFloatTimeout()));
+ connect(m_floatTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotFloatTimeout()));
m_float->hide();
}
@@ -144,7 +144,7 @@ Fader::Fader(int min, int max, int deflt,
calculateGroovePixmap();
setFader(deflt);
- connect(m_floatTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotFloatTimeout()));
+ connect(m_floatTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotFloatTimeout()));
m_float->hide();
}
diff --git a/src/gui/widgets/HSpinBox.cpp b/src/gui/widgets/HSpinBox.cpp
index 0c8639b..8534205 100644
--- a/src/gui/widgets/HSpinBox.cpp
+++ b/src/gui/widgets/HSpinBox.cpp
@@ -64,7 +64,7 @@ HSpinBox::HSpinBox( TQWidget* parent, float initialValue, int step,
initialize(decimals);
setValuef(initialValue);
if (recv != NULL && mem != NULL)
- TQObject::connect(this, TQT_SIGNAL(valueChanged(int)), recv, mem);
+ TQObject::connect(this, TQ_SIGNAL(valueChanged(int)), recv, mem);
}
float HSpinBox::valuef() { return float(value()) / m_scaleFactor; }
diff --git a/src/gui/widgets/PitchChooser.cpp b/src/gui/widgets/PitchChooser.cpp
index d56b028..060009e 100644
--- a/src/gui/widgets/PitchChooser.cpp
+++ b/src/gui/widgets/PitchChooser.cpp
@@ -59,26 +59,26 @@ PitchChooser::PitchChooser(TQString title,
m_pitchLabel = new TQLabel(pl.getTQString(), hbox);
m_pitchLabel->setMinimumWidth(40);
- connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotSetPitch(int)));
+ connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SIGNAL(pitchChanged(int)));
+ connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SIGNAL(pitchChanged(int)));
- connect(m_pitch, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SIGNAL(preview(int)));
+ connect(m_pitch, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SIGNAL(preview(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchDragged(int)),
- this, TQT_SLOT(slotSetPitch(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchDragged(int)),
+ this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)),
- this, TQT_SLOT(slotSetPitch(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int)),
+ this, TQ_SLOT(slotSetPitch(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(pitchChanged(int)),
- this, TQT_SIGNAL(pitchChanged(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(pitchChanged(int)),
+ this, TQ_SIGNAL(pitchChanged(int)));
- connect(m_pitchDragLabel, TQT_SIGNAL(preview(int)),
- this, TQT_SIGNAL(preview(int)));
+ connect(m_pitchDragLabel, TQ_SIGNAL(preview(int)),
+ this, TQ_SIGNAL(preview(int)));
}
diff --git a/src/gui/widgets/PluginControl.cpp b/src/gui/widgets/PluginControl.cpp
index 10b5476..b075cba 100644
--- a/src/gui/widgets/PluginControl.cpp
+++ b/src/gui/widgets/PluginControl.cpp
@@ -146,8 +146,8 @@ PluginControl::PluginControl(TQWidget *parent,
m_dial->setKnobColour(GUIPalette::getColour(GUIPalette::RotaryPlugin));
- connect(m_dial, TQT_SIGNAL(valueChanged(float)),
- this, TQT_SLOT(slotValueChanged(float)));
+ connect(m_dial, TQ_SIGNAL(valueChanged(float)),
+ this, TQ_SLOT(slotValueChanged(float)));
TQLabel *upp;
if (port->getDisplayHint() &
diff --git a/src/gui/widgets/ProgressDialog.cpp b/src/gui/widgets/ProgressDialog.cpp
index bcc5c2c..1f17e80 100644
--- a/src/gui/widgets/ProgressDialog.cpp
+++ b/src/gui/widgets/ProgressDialog.cpp
@@ -52,8 +52,8 @@ ProgressDialog::ProgressDialog(TQWidget *creator,
RG_DEBUG << "ProgressDialog::ProgressDialog type 1 - "
<< labelText() << " - modal : " << modal << endl;
- connect(progressBar(), TQT_SIGNAL(percentageChanged (int)),
- this, TQT_SLOT(slotCheckShow(int)));
+ connect(progressBar(), TQ_SIGNAL(percentageChanged (int)),
+ this, TQ_SLOT(slotCheckShow(int)));
m_chrono.start();
@@ -83,8 +83,8 @@ ProgressDialog::ProgressDialog(
RG_DEBUG << "ProgressDialog::ProgressDialog type 2 - "
<< labelText << " - modal : " << modal << endl;
- connect(progressBar(), TQT_SIGNAL(percentageChanged (int)),
- this, TQT_SLOT(slotCheckShow(int)));
+ connect(progressBar(), TQ_SIGNAL(percentageChanged (int)),
+ this, TQ_SLOT(slotCheckShow(int)));
m_chrono.start();
diff --git a/src/gui/widgets/QuantizeParameters.cpp b/src/gui/widgets/QuantizeParameters.cpp
index c28e331..e69dbaa 100644
--- a/src/gui/widgets/QuantizeParameters.cpp
+++ b/src/gui/widgets/QuantizeParameters.cpp
@@ -180,8 +180,8 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent,
m_advancedButton =
new TQPushButton(i18n("Show advanced options"), this);
m_mainLayout->addWidget(m_advancedButton, zero + 2, 0, TQt::AlignLeft);
- TQObject::connect(m_advancedButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotAdvancedChanged()));
+ TQObject::connect(m_advancedButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotAdvancedChanged()));
}
TQFrame *postFrame = new TQFrame(m_postProcessingBox);
@@ -335,7 +335,7 @@ QuantizeParameters::QuantizeParameters(TQWidget *parent,
break;
}
- connect(m_typeCombo, TQT_SIGNAL(activated(int)), TQT_SLOT(slotTypeChanged(int)));
+ connect(m_typeCombo, TQ_SIGNAL(activated(int)), TQ_SLOT(slotTypeChanged(int)));
}
Quantizer *
diff --git a/src/gui/widgets/Rotary.cpp b/src/gui/widgets/Rotary.cpp
index 4b5134f..8dc3d5c 100644
--- a/src/gui/widgets/Rotary.cpp
+++ b/src/gui/widgets/Rotary.cpp
@@ -97,8 +97,8 @@ Rotary::Rotary(TQWidget *parent,
}
// connect timer
- connect(_floatTimer, TQT_SIGNAL(timeout()), this,
- TQT_SLOT(slotFloatTimeout()));
+ connect(_floatTimer, TQ_SIGNAL(timeout()), this,
+ TQ_SLOT(slotFloatTimeout()));
_float->hide();
TQToolTip::add
@@ -113,8 +113,8 @@ Rotary::~Rotary()
{
// Remove this connection
//
- disconnect(_floatTimer, TQT_SIGNAL(timeout()), this,
- TQT_SLOT(slotFloatTimeout()));
+ disconnect(_floatTimer, TQ_SIGNAL(timeout()), this,
+ TQ_SLOT(slotFloatTimeout()));
delete _float;
_float = 0;
diff --git a/src/gui/widgets/TimeWidget.cpp b/src/gui/widgets/TimeWidget.cpp
index 9fdddf6..11cf037 100644
--- a/src/gui/widgets/TimeWidget.cpp
+++ b/src/gui/widgets/TimeWidget.cpp
@@ -129,8 +129,8 @@ TimeWidget::init(bool editable)
(NotePixmapFactory::makeNoteMenuPixmap(duration, error));
m_note->insertItem(pmap, label); // ignore error
}
- connect(m_note, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotNoteChanged(int)));
+ connect(m_note, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotNoteChanged(int)));
layout->addMultiCellWidget(m_note, 0, 0, 1, 3);
} else {
@@ -154,8 +154,8 @@ TimeWidget::init(bool editable)
m_timeT = new TQSpinBox(frame);
m_timeT->setLineStep
(Note(Note::Shortest).getDuration());
- connect(m_timeT, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotTimeTChanged(int)));
+ connect(m_timeT, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotTimeTChanged(int)));
layout->addWidget(m_timeT, 0, 5);
} else {
m_timeT = 0;
@@ -176,8 +176,8 @@ TimeWidget::init(bool editable)
m_timeT = new TQSpinBox(frame);
m_timeT->setLineStep
(Note(Note::Shortest).getDuration());
- connect(m_timeT, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotTimeTChanged(int)));
+ connect(m_timeT, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotTimeTChanged(int)));
layout->addWidget(m_timeT, 0, 1);
layout->addWidget(new TQLabel(i18n("units"), frame), 0, 2);
} else {
@@ -197,8 +197,8 @@ TimeWidget::init(bool editable)
m_bar = new TQSpinBox(frame);
if (m_isDuration)
m_bar->setMinValue(0);
- connect(m_bar, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotBarBeatOrFractionChanged(int)));
+ connect(m_bar, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotBarBeatOrFractionChanged(int)));
layout->addWidget(m_bar, 1, 1);
} else {
m_bar = 0;
@@ -215,8 +215,8 @@ TimeWidget::init(bool editable)
m_beatLabel = 0;
m_beat = new TQSpinBox(frame);
m_beat->setMinValue(1);
- connect(m_beat, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotBarBeatOrFractionChanged(int)));
+ connect(m_beat, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotBarBeatOrFractionChanged(int)));
layout->addWidget(m_beat, 1, 3);
} else {
m_beat = 0;
@@ -236,8 +236,8 @@ TimeWidget::init(bool editable)
m_fractionLabel = 0;
m_fraction = new TQSpinBox(frame);
m_fraction->setMinValue(1);
- connect(m_fraction, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotBarBeatOrFractionChanged(int)));
+ connect(m_fraction, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotBarBeatOrFractionChanged(int)));
layout->addWidget(m_fraction, 1, 5);
} else {
m_fraction = 0;
@@ -258,8 +258,8 @@ TimeWidget::init(bool editable)
m_sec = new TQSpinBox(frame);
if (m_isDuration)
m_sec->setMinValue(0);
- connect(m_sec, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotSecOrMSecChanged(int)));
+ connect(m_sec, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotSecOrMSecChanged(int)));
layout->addWidget(m_sec, 2, 1);
} else {
m_sec = 0;
@@ -277,8 +277,8 @@ TimeWidget::init(bool editable)
m_msec = new TQSpinBox(frame);
m_msec->setMinValue(0);
m_msec->setLineStep(10);
- connect(m_msec, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotSecOrMSecChanged(int)));
+ connect(m_msec, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotSecOrMSecChanged(int)));
layout->addWidget(m_msec, 2, 3);
} else {
m_msec = 0;
diff --git a/src/gui/widgets/VUMeter.cpp b/src/gui/widgets/VUMeter.cpp
index 145139c..8838ad4 100644
--- a/src/gui/widgets/VUMeter.cpp
+++ b/src/gui/widgets/VUMeter.cpp
@@ -92,26 +92,26 @@ VUMeter::VUMeter(TQWidget *parent,
//
m_fallTimerLeft = new TQTimer();
- connect(m_fallTimerLeft, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotReduceLevelLeft()));
+ connect(m_fallTimerLeft, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotReduceLevelLeft()));
if (m_showPeakLevel) {
m_peakTimerLeft = new TQTimer();
- connect(m_peakTimerLeft, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotStopShowingPeakLeft()));
+ connect(m_peakTimerLeft, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotStopShowingPeakLeft()));
}
if (stereo) {
m_fallTimerRight = new TQTimer();
- connect(m_fallTimerRight, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotReduceLevelRight()));
+ connect(m_fallTimerRight, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotReduceLevelRight()));
if (m_showPeakLevel) {
m_peakTimerRight = new TQTimer();
- connect(m_peakTimerRight, TQT_SIGNAL(timeout()),
- this, TQT_SLOT(slotStopShowingPeakRight()));
+ connect(m_peakTimerRight, TQ_SIGNAL(timeout()),
+ this, TQ_SLOT(slotStopShowingPeakRight()));
}
}