summaryrefslogtreecommitdiffstats
path: root/kicker-applets/mediacontrol/playerInterface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kicker-applets/mediacontrol/playerInterface.h')
-rw-r--r--kicker-applets/mediacontrol/playerInterface.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/kicker-applets/mediacontrol/playerInterface.h b/kicker-applets/mediacontrol/playerInterface.h
index 4d7fa7c..916d387 100644
--- a/kicker-applets/mediacontrol/playerInterface.h
+++ b/kicker-applets/mediacontrol/playerInterface.h
@@ -21,14 +21,15 @@
#include <tqobject.h>
#include <tqdragobject.h>
-class PlayerInterface : public QObject
+class PlayerInterface : public TQObject
{
Q_OBJECT
+ TQ_OBJECT
public:
PlayerInterface();
virtual ~PlayerInterface();
- enum PlayingStatus { Stopped=0, Playing, Paused };
+ enum PlayingtqStatus { Stopped=0, Playing, Paused };
public slots:
virtual void updateSlider()=0; // gets called on timer-timeout
@@ -44,7 +45,7 @@ class PlayerInterface : public QObject
virtual void dragEnterEvent(TQDragEnterEvent* event)=0;
virtual void dropEvent(TQDropEvent* event)=0;
virtual const TQString getTrackTitle() const=0;
- virtual int playingStatus()=0;
+ virtual int playingtqStatus()=0;
void startPlayer(const TQString &desktopname);