diff options
Diffstat (limited to 'src/xineplayer.cpp')
-rw-r--r-- | src/xineplayer.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/xineplayer.cpp b/src/xineplayer.cpp index 5dad3f2..cae0637 100644 --- a/src/xineplayer.cpp +++ b/src/xineplayer.cpp @@ -289,7 +289,7 @@ void Backend::play (int repeat_count) { } void Backend::stop () { - TQTimer::singleShot (0, xineapp, TQT_SLOT (stop ())); + TQTimer::singleShot (0, xineapp, TQ_SLOT (stop ())); } void Backend::pause () { @@ -337,7 +337,7 @@ void Backend::quit () { if (running) stop (); else - TQTimer::singleShot (0, tqApp, TQT_SLOT (quit ())); + TQTimer::singleShot (0, tqApp, TQ_SLOT (quit ())); } bool updateConfigEntry (const TQString & name, const TQString & value) { @@ -441,7 +441,7 @@ void KXinePlayer::init () { options[i+1] = 0L; xine_config_register_enum (xine, "audio.visualization", 0, (char ** ) options, 0L, 0L, 0, xine_config_cb, 0L); if (!callback) - TQTimer::singleShot (10, this, TQT_SLOT (play ())); + TQTimer::singleShot (10, this, TQ_SLOT (play ())); } KXinePlayer::~KXinePlayer () { @@ -613,7 +613,7 @@ void KXinePlayer::stop () { xine_stop (sub_stream); xine_stop (stream); mutex.unlock (); - TQTimer::singleShot (10, this, TQT_SLOT (postFinished ())); + TQTimer::singleShot (10, this, TQ_SLOT (postFinished ())); } void KXinePlayer::postFinished () { @@ -633,7 +633,7 @@ void KXinePlayer::pause () { } void KXinePlayer::finished () { - TQTimer::singleShot (10, this, TQT_SLOT (stop ())); + TQTimer::singleShot (10, this, TQ_SLOT (stop ())); } void KXinePlayer::setAudioLang (int id, const TQString & al) { @@ -662,7 +662,7 @@ void KXinePlayer::updatePosition () { movie_pos = pos; callback->moviePosition (pos/100); } - TQTimer::singleShot (500, this, TQT_SLOT (updatePosition ())); + TQTimer::singleShot (500, this, TQ_SLOT (updatePosition ())); } void KXinePlayer::saturation (int val) { @@ -748,7 +748,7 @@ bool KXinePlayer::event (TQEvent * e) { if (callback) callback->finished (); else - TQTimer::singleShot (0, this, TQT_SLOT (quit ())); + TQTimer::singleShot (0, this, TQ_SLOT (quit ())); break; } case event_size: { @@ -758,7 +758,7 @@ bool KXinePlayer::event (TQEvent * e) { callback->movieParams (se->length/100, se->width, se->height, se->height ? 1.0*se->width/se->height : 1.0, se->alang, se->slang); if (se->first_frame) { callback->playing (); - TQTimer::singleShot (500, this, TQT_SLOT (updatePosition ())); + TQTimer::singleShot (500, this, TQ_SLOT (updatePosition ())); } } break; |