diff options
Diffstat (limited to 'src/xvplayer.h')
-rw-r--r-- | src/xvplayer.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/xvplayer.h b/src/xvplayer.h index 9782fc6..ece8475 100644 --- a/src/xvplayer.h +++ b/src/xvplayer.h @@ -20,12 +20,13 @@ #ifndef _K_XV_PLAYER_H_ #define _K_XV_PLAYER_H_ -#include <qapplication.h> -#include <qstring.h> -#include <qsessionmanager.h> +#include <tqapplication.h> +#include <tqstring.h> +#include <tqsessionmanager.h> -class KXVideoPlayer : public QApplication { +class KXVideoPlayer : public TQApplication { Q_OBJECT + TQ_OBJECT public: KXVideoPlayer (int argc, char ** argv); ~KXVideoPlayer (); @@ -39,7 +40,7 @@ public: void volume (int val); void frequency (int val); //void seek (int val); - //bool event (QEvent * e); + //bool event (TQEvent * e); public slots: void play (); void stop (); @@ -47,8 +48,8 @@ public slots: //void updatePosition (); //void postFinished (); protected: - void saveState (QSessionManager & sm); - void timerEvent (QTimerEvent *); + void saveState (TQSessionManager & sm); + void timerEvent (TQTimerEvent *); private: int mute_timer; }; |