diff options
Diffstat (limited to 'juk/statuslabel.h')
-rw-r--r-- | juk/statuslabel.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/juk/statuslabel.h b/juk/statuslabel.h index 6c733f21..ba519590 100644 --- a/juk/statuslabel.h +++ b/juk/statuslabel.h @@ -18,19 +18,19 @@ #include "playlistinterface.h" -#include <qhbox.h> +#include <tqhbox.h> class QLabel; class KSqueezedTextLabel; class FileHandle; -class StatusLabel : public QHBox, public PlaylistObserver +class StatusLabel : public TQHBox, public PlaylistObserver { Q_OBJECT public: - StatusLabel(PlaylistInterface *playlist, QWidget *parent = 0, const char *name = 0); + StatusLabel(PlaylistInterface *playlist, TQWidget *parent = 0, const char *name = 0); virtual ~StatusLabel(); virtual void updateCurrent(); @@ -48,9 +48,9 @@ signals: private: void updateTime(); - virtual bool eventFilter(QObject *o, QEvent *e); + virtual bool eventFilter(TQObject *o, TQEvent *e); - static QString formatTime(int minutes, int seconds); + static TQString formatTime(int minutes, int seconds); int m_itemTotalTime; int m_itemCurrentTime; @@ -58,7 +58,7 @@ private: KSqueezedTextLabel *m_playlistLabel; KSqueezedTextLabel *m_trackLabel; - QLabel *m_itemTimeLabel; + TQLabel *m_itemTimeLabel; }; #endif |