diff options
Diffstat (limited to 'noatun/modules/systray/systray.h')
-rw-r--r-- | noatun/modules/systray/systray.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/noatun/modules/systray/systray.h b/noatun/modules/systray/systray.h index f602c4e3..aa723eb5 100644 --- a/noatun/modules/systray/systray.h +++ b/noatun/modules/systray/systray.h @@ -30,7 +30,7 @@ #include <noatun/plugin.h> #include <noatun/app.h> -#include <qtimer.h> +#include <tqtimer.h> #include <kmainwindow.h> @@ -47,34 +47,34 @@ public: virtual void init(); protected: - virtual void closeEvent(QCloseEvent *); + virtual void closeEvent(TQCloseEvent *); public slots: void slotPlayPause(); void slotStopped(); private slots: - void changeTray(const QString &); + void changeTray(const TQString &); void slotLoadSettings(); void slotBlinkTimer(); void showPassivePopup(); - QPixmap *renderIcon(const QString &, const QString &) const; + TQPixmap *renderIcon(const TQString &, const TQString &) const; private: - void setTipText(const QString&); + void setTipText(const TQString&); void updateCover(); void removeCover(); private: KitSystemTray *mTray; - QTimer *mBlinkTimer; - QPixmap *trayStatus; - QPixmap *trayBase; + TQTimer *mBlinkTimer; + TQPixmap *trayStatus; + TQPixmap *trayBase; PassivePopup *mPassivePopup; bool showingTrayStatus; - QString tipText; - QString tmpCoverPath; + TQString tipText; + TQString tmpCoverPath; }; #endif |