diff options
Diffstat (limited to 'kaffeine/src/player-parts/xine-part/kxinewidget.cpp')
-rw-r--r-- | kaffeine/src/player-parts/xine-part/kxinewidget.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kaffeine/src/player-parts/xine-part/kxinewidget.cpp b/kaffeine/src/player-parts/xine-part/kxinewidget.cpp index 58c12c5..4cb52a2 100644 --- a/kaffeine/src/player-parts/xine-part/kxinewidget.cpp +++ b/kaffeine/src/player-parts/xine-part/kxinewidget.cpp @@ -92,7 +92,7 @@ KXineWidget::KXineWidget(TQWidget* parent, const char* name, dvbHaveVideo = 0; dvbOSD = 0; dvbColor[0] = 0; - connect( &dvbOSDHideTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(dvbHideOSD()) ); + connect( &dvbOSDHideTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(dvbHideOSD()) ); if (pathToConfigFile.isNull()) { @@ -111,11 +111,11 @@ KXineWidget::KXineWidget(TQWidget* parent, const char* name, m_audioFilterList.setAutoDelete(true); /*** delete post plugin on removing from list ***/ #endif - connect(&m_posTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotSendPosition())); - connect(&m_lengthInfoTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotEmitLengthInfo())); - connect(&m_mouseHideTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotHideMouse())); - connect(&m_osdTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotOSDHide())); - connect(&m_recentMessagesTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotNoRecentMessage())); + connect(&m_posTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotSendPosition())); + connect(&m_lengthInfoTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotEmitLengthInfo())); + connect(&m_mouseHideTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotHideMouse())); + connect(&m_osdTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotOSDHide())); + connect(&m_recentMessagesTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotNoRecentMessage())); setUpdatesEnabled(false); setMouseTracking(true); @@ -691,7 +691,7 @@ void KXineWidget::timerEvent( TQTimerEvent* tevent ) { if ( !TimeShiftFilename.isEmpty() ) { - TQTimer::singleShot(0, this, TQT_SLOT(slotPlayTimeShift())); + TQTimer::singleShot(0, this, TQ_SLOT(slotPlayTimeShift())); break; } if ( m_trackURL=="DVB" || m_trackURL.contains(".kaxtv") ) @@ -709,7 +709,7 @@ void KXineWidget::timerEvent( TQTimerEvent* tevent ) xine_stop(m_xineStream); } else - TQTimer::singleShot(0, this, TQT_SLOT(slotPlay())); + TQTimer::singleShot(0, this, TQ_SLOT(slotPlay())); break; } case TIMER_EVENT_NEW_CHANNELS: @@ -1870,7 +1870,7 @@ void KXineWidget::setDvbCurrentNext( const TQString &channelName, const TQString m_dvbChannelName = channelName; - TQTimer::singleShot( 0, this, TQT_SLOT(dvbShowOSD()) ); + TQTimer::singleShot( 0, this, TQ_SLOT(dvbShowOSD()) ); } void KXineWidget::setDvb( const TQString &pipeName, const TQString &chanName, int haveVideo ) @@ -1900,7 +1900,7 @@ bool KXineWidget::openDvb() else fprintf(stderr,"xine pipe opened %s\n", m_trackURL.ascii()); m_trackURL = "DVB"; emit signalXineStatus(i18n("DVB: opening...")); - TQTimer::singleShot( 0, this, TQT_SLOT(playDvb()) ); + TQTimer::singleShot( 0, this, TQ_SLOT(playDvb()) ); return true; } @@ -2148,7 +2148,7 @@ void KXineWidget::slotPlay() } /*** we need a little delay for some meta info ***/ - TQTimer::singleShot(1000, this, TQT_SLOT(slotGetInfoDelayed())); + TQTimer::singleShot(1000, this, TQ_SLOT(slotGetInfoDelayed())); m_trackLength = getLengthInfo(); @@ -2266,7 +2266,7 @@ void KXineWidget::sendXineError() { errorOut(error); errorOut(TQString("Can't play: %1 - trying next").arg(m_trackURL)); - TQTimer::singleShot(0, this, TQT_SLOT(slotPlay())); + TQTimer::singleShot(0, this, TQ_SLOT(slotPlay())); } } @@ -2359,7 +2359,7 @@ void KXineWidget::slotCreateVideoFilter(const TQString& name, TQWidget* parent) unwireVideoFilters(); PostFilter* filter = new PostFilter(name, m_xineEngine, m_audioDriver, m_videoDriver, parent); - connect(filter, TQT_SIGNAL(signalDeleteMe(PostFilter*)), this, TQT_SLOT(slotDeleteVideoFilter(PostFilter*))); + connect(filter, TQ_SIGNAL(signalDeleteMe(PostFilter*)), this, TQ_SLOT(slotDeleteVideoFilter(PostFilter*))); m_videoFilterList.append(filter); wireVideoFilters(); @@ -2375,7 +2375,7 @@ void KXineWidget::slotCreateAudioFilter(const TQString& name, TQWidget* parent) unwireAudioFilters(); PostFilter* filter = new PostFilter(name, m_xineEngine, m_audioDriver, m_videoDriver, parent); - connect(filter, TQT_SIGNAL(signalDeleteMe(PostFilter*)), this, TQT_SLOT(slotDeleteAudioFilter(PostFilter*))); + connect(filter, TQ_SIGNAL(signalDeleteMe(PostFilter*)), this, TQ_SLOT(slotDeleteAudioFilter(PostFilter*))); m_audioFilterList.append(filter); wireAudioFilters(); @@ -2897,7 +2897,7 @@ void KXineWidget::slotStop() else { appendToQueue(m_logoFile); - TQTimer::singleShot(0, this, TQT_SLOT(slotPlay())); + TQTimer::singleShot(0, this, TQ_SLOT(slotPlay())); } emit signalXineStatus(i18n("Stop")); |