summaryrefslogtreecommitdiffstats
path: root/plugins/gui-standard-display/radioview_frequencyseeker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gui-standard-display/radioview_frequencyseeker.cpp')
-rw-r--r--plugins/gui-standard-display/radioview_frequencyseeker.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/plugins/gui-standard-display/radioview_frequencyseeker.cpp b/plugins/gui-standard-display/radioview_frequencyseeker.cpp
index 611c6a2..d043dd8 100644
--- a/plugins/gui-standard-display/radioview_frequencyseeker.cpp
+++ b/plugins/gui-standard-display/radioview_frequencyseeker.cpp
@@ -60,16 +60,16 @@ RadioViewFrequencySeeker::RadioViewFrequencySeeker(TQWidget *parent, const TQStr
l->addWidget (m_btnStepRight);
l->addWidget (m_btnSearchRight);
- TQObject::connect(m_sldFrequency, TQT_SIGNAL(valueChanged(int)),
- this, TQT_SLOT(slotSliderChanged(int)));
- TQObject::connect(m_btnSearchLeft, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotSearchLeft(bool)));
- TQObject::connect(m_btnSearchRight, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotSearchRight(bool)));
- TQObject::connect(m_btnStepLeft, TQT_SIGNAL(clicked()),
- m_sldFrequency, TQT_SLOT(subtractStep()));
- TQObject::connect(m_btnStepRight, TQT_SIGNAL(clicked()),
- m_sldFrequency, TQT_SLOT(addStep()));
+ TQObject::connect(m_sldFrequency, TQ_SIGNAL(valueChanged(int)),
+ this, TQ_SLOT(slotSliderChanged(int)));
+ TQObject::connect(m_btnSearchLeft, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotSearchLeft(bool)));
+ TQObject::connect(m_btnSearchRight, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotSearchRight(bool)));
+ TQObject::connect(m_btnStepLeft, TQ_SIGNAL(clicked()),
+ m_sldFrequency, TQ_SLOT(subtractStep()));
+ TQObject::connect(m_btnStepRight, TQ_SIGNAL(clicked()),
+ m_sldFrequency, TQ_SLOT(addStep()));
// Tooltips
@@ -84,8 +84,8 @@ RadioViewFrequencySeeker::RadioViewFrequencySeeker(TQWidget *parent, const TQStr
TQAccel *Accel = new TQAccel (this);
Accel->insertItem (Key_Left, 100);
Accel->insertItem (Key_Right, 101);
- Accel->connectItem (100, m_sldFrequency, TQT_SLOT(subtractStep()));
- Accel->connectItem (101, m_sldFrequency, TQT_SLOT(addStep()));
+ Accel->connectItem (100, m_sldFrequency, TQ_SLOT(subtractStep()));
+ Accel->connectItem (101, m_sldFrequency, TQ_SLOT(addStep()));
}