summaryrefslogtreecommitdiffstats
path: root/noatun/library/noatun/player.h
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/library/noatun/player.h')
-rw-r--r--noatun/library/noatun/player.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/noatun/library/noatun/player.h b/noatun/library/noatun/player.h
index bccda62b..a61c2335 100644
--- a/noatun/library/noatun/player.h
+++ b/noatun/library/noatun/player.h
@@ -1,8 +1,8 @@
#ifndef PLAYER_H
#define PLAYER_H
-#include <qobject.h>
-#include <qtimer.h>
+#include <tqobject.h>
+#include <tqtimer.h>
#include <kurl.h>
#include <noatun/playlist.h>
#include <kdemacros.h>
@@ -41,14 +41,14 @@ public:
enum LoopType { None=0, Song, Playlist, Random };
public:
- Player(QObject *parent=0);
+ Player(TQObject *parent=0);
~Player();
/**
* @return a string with the time that can be used in the UI:
* CC:CC/LL:LL (mm:ss)
**/
- QString lengthString(int _position=-1);
+ TQString lengthString(int _position=-1);
/**
* @return LoopType enum
**/
@@ -180,9 +180,9 @@ private slots:
void posTimeout();
void aboutToPlay();
void slotUpdateStreamMeta(
- const QString &streamName, const QString &streamGenre,
- const QString &streamUrl, const QString &streamBitrate,
- const QString &trackTitle, const QString &trackUrl
+ const TQString &streamName, const TQString &streamGenre,
+ const TQString &streamUrl, const TQString &streamBitrate,
+ const TQString &trackTitle, const TQString &trackUrl
);
signals:
@@ -257,12 +257,12 @@ signals:
private:
Engine *mEngine;
- QTimer filePos;
+ TQTimer filePos;
int position;
int mLoopStyle;
bool firstTimeout;
PlaylistItem mCurrent; // TODO eliminate
- QPtrList<PlaylistNotifier> mNotifiers;
+ TQPtrList<PlaylistNotifier> mNotifiers;
};