diff options
Diffstat (limited to 'plugins/alsa-sound/alsa-sound.cpp')
-rw-r--r-- | plugins/alsa-sound/alsa-sound.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/alsa-sound/alsa-sound.cpp b/plugins/alsa-sound/alsa-sound.cpp index 746eacf..d2cef4f 100644 --- a/plugins/alsa-sound/alsa-sound.cpp +++ b/plugins/alsa-sound/alsa-sound.cpp @@ -74,8 +74,8 @@ AlsaSoundDevice::AlsaSoundDevice(const TQString &name) m_EnableCapture(true)//, // m_captureThread(NULL) { - TQObject::connect(&m_PlaybackPollingTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotPollPlayback())); - TQObject::connect(&m_CapturePollingTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotPollCapture())); + TQObject::connect(&m_PlaybackPollingTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotPollPlayback())); + TQObject::connect(&m_CapturePollingTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotPollCapture())); } @@ -191,7 +191,7 @@ void AlsaSoundDevice::restoreState (TDEConfig *c) ConfigPageInfo AlsaSoundDevice::createConfigurationPage() { AlsaSoundConfiguration *conf = new AlsaSoundConfiguration(NULL, this); - TQObject::connect(this, TQT_SIGNAL(sigUpdateConfig()), conf, TQT_SLOT(slotUpdateConfig())); + TQObject::connect(this, TQ_SIGNAL(sigUpdateConfig()), conf, TQ_SLOT(slotUpdateConfig())); return ConfigPageInfo (conf, i18n("ALSA Sound"), i18n("ALSA Sound Device Options"), |