diff options
Diffstat (limited to 'plugins/streaming/streaming.cpp')
-rw-r--r-- | plugins/streaming/streaming.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/streaming/streaming.cpp b/plugins/streaming/streaming.cpp index fcbc0cb..2f6c3ea 100644 --- a/plugins/streaming/streaming.cpp +++ b/plugins/streaming/streaming.cpp @@ -167,7 +167,7 @@ void StreamingDevice::restoreState (TDEConfig *c) ConfigPageInfo StreamingDevice::createConfigurationPage() { StreamingConfiguration *conf = new StreamingConfiguration(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("Streaming"), i18n("Streaming Device Options"), @@ -498,8 +498,8 @@ void StreamingDevice::resetCaptureStreams(bool notification_enabled) void StreamingDevice::addPlaybackStream(const TQString &url, const SoundFormat &sf, size_t buffer_size, bool notification_enabled) { StreamingJob *x = new StreamingJob(url, sf, buffer_size); - connect(x, TQT_SIGNAL(logStreamError(const KURL &, const TQString &)), - this, TQT_SLOT (logStreamError(const KURL &, const TQString &))); + connect(x, TQ_SIGNAL(logStreamError(const KURL &, const TQString &)), + this, TQ_SLOT (logStreamError(const KURL &, const TQString &))); m_PlaybackChannelList.append(url); m_PlaybackChannels.insert(url, x); @@ -512,8 +512,8 @@ void StreamingDevice::addPlaybackStream(const TQString &url, const SoundFormat & void StreamingDevice::addCaptureStream (const TQString &url, const SoundFormat &sf, size_t buffer_size, bool notification_enabled) { StreamingJob *x = new StreamingJob(url, sf, buffer_size); - connect(x, TQT_SIGNAL(logStreamError(const KURL &, const TQString &)), - this, TQT_SLOT (logStreamError(const KURL &, const TQString &))); + connect(x, TQ_SIGNAL(logStreamError(const KURL &, const TQString &)), + this, TQ_SLOT (logStreamError(const KURL &, const TQString &))); m_CaptureChannelList.append(url); m_CaptureChannels.insert(url, x); |