diff options
Diffstat (limited to 'noatun/modules/kjofol-skin/kjbutton.h')
-rw-r--r-- | noatun/modules/kjofol-skin/kjbutton.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun/modules/kjofol-skin/kjbutton.h b/noatun/modules/kjofol-skin/kjbutton.h index 4af4fcb0..e995c533 100644 --- a/noatun/modules/kjofol-skin/kjbutton.h +++ b/noatun/modules/kjofol-skin/kjbutton.h @@ -2,21 +2,21 @@ #define KJBUTTON_H #include "kjwidget.h" -#include <qobject.h> +#include <tqobject.h> class KJLoader; -class KJButton : public QObject, public KJWidget +class KJButton : public TQObject, public KJWidget { Q_OBJECT public: - KJButton(const QStringList&, KJLoader *); + KJButton(const TQStringList&, KJLoader *); - virtual void paint(QPainter *, const QRect &rect); - virtual bool mousePress(const QPoint &pos); - virtual void mouseRelease(const QPoint &pos, bool); + virtual void paint(TQPainter *, const TQRect &rect); + virtual bool mousePress(const TQPoint &pos); + virtual void mouseRelease(const TQPoint &pos, bool); virtual void showPressed(bool b=true); - virtual QString tip(); + virtual TQString tip(); private slots: void slotPlaylistShown(void); @@ -24,10 +24,10 @@ private slots: void slotEqEnabled(bool on); private: - QPixmap mBackground; + TQPixmap mBackground; bool mPushedPixmap; - QPixmap mPressed; - QString mTitle; + TQPixmap mPressed; + TQString mTitle; bool mShowPressed; }; |