diff options
Diffstat (limited to 'src/xvplayer.cpp')
-rw-r--r-- | src/xvplayer.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xvplayer.cpp b/src/xvplayer.cpp index 4f61fc1..f10c9bd 100644 --- a/src/xvplayer.cpp +++ b/src/xvplayer.cpp @@ -129,7 +129,7 @@ void Backend::play (int) { } void Backend::stop () { - TQTimer::singleShot (0, xvapp, TQT_SLOT (stop ())); + TQTimer::singleShot (0, xvapp, TQ_SLOT (stop ())); } void Backend::pause () { @@ -179,7 +179,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) { @@ -226,7 +226,7 @@ void KXVideoPlayer::init () { wid = XCreateSimpleWindow(display, XDefaultRootWindow(display), xpos, ypos, width, height, 1, 0, 0); if (!callback) - TQTimer::singleShot (10, this, TQT_SLOT (play ())); + TQTimer::singleShot (10, this, TQ_SLOT (play ())); XSelectInput (display, wid, (PointerMotionMask | ExposureMask | KeyPressMask | ButtonPressMask | StructureNotifyMask)); // | SubstructureNotifyMask)); XvAdaptorInfo * ai; @@ -435,11 +435,11 @@ void KXVideoPlayer::stop () { if (callback) callback->finished (); else - TQTimer::singleShot (0, tqApp, TQT_SLOT (quit ())); + TQTimer::singleShot (0, tqApp, TQ_SLOT (quit ())); } void KXVideoPlayer::finished () { - TQTimer::singleShot (10, this, TQT_SLOT (stop ())); + TQTimer::singleShot (10, this, TQ_SLOT (stop ())); } void KXVideoPlayer::saturation (int val) { |