summaryrefslogtreecommitdiffstats
path: root/plugins/recording/recording-monitor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/recording/recording-monitor.cpp')
-rw-r--r--plugins/recording/recording-monitor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/recording/recording-monitor.cpp b/plugins/recording/recording-monitor.cpp
index ee1514b..3800da3 100644
--- a/plugins/recording/recording-monitor.cpp
+++ b/plugins/recording/recording-monitor.cpp
@@ -55,8 +55,8 @@ RecordingMonitor::RecordingMonitor(const TQString &name)
TQPushButton *close = new TQPushButton(i18n("&Close"), this);
m_btnStartStop = new TQPushButton(i18n("&Record"), this);
- TQObject::connect(close, TQT_SIGNAL(clicked()), this, TQT_SLOT(hide()));
- TQObject::connect(m_btnStartStop, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotStartStopRecording()));
+ TQObject::connect(close, TQ_SIGNAL(clicked()), this, TQ_SLOT(hide()));
+ TQObject::connect(m_btnStartStop, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotStartStopRecording()));
m_dataMonitor = new RecordingDataMonitor(this, NULL);
m_dataMonitor->setEnabled(false);
@@ -72,7 +72,7 @@ RecordingMonitor::RecordingMonitor(const TQString &name)
m_comboSoundStreamSelector->insertItem(i18n("nothing"));
- TQObject::connect(m_comboSoundStreamSelector, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotStreamSelected(int)));
+ TQObject::connect(m_comboSoundStreamSelector, TQ_SIGNAL(activated(int)), this, TQ_SLOT(slotStreamSelected(int)));
updateRecordingButton();
}