diff options
Diffstat (limited to 'kmail/kmsystemtray.h')
-rw-r--r-- | kmail/kmsystemtray.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/kmail/kmsystemtray.h b/kmail/kmsystemtray.h index 2d2e2bf61..4314ccfe1 100644 --- a/kmail/kmsystemtray.h +++ b/kmail/kmsystemtray.h @@ -20,11 +20,11 @@ #include <ksystemtray.h> -#include <qmap.h> -#include <qguardedptr.h> -#include <qvaluevector.h> -#include <qpixmap.h> -#include <qimage.h> +#include <tqmap.h> +#include <tqguardedptr.h> +#include <tqvaluevector.h> +#include <tqpixmap.h> +#include <tqimage.h> #include <time.h> @@ -43,7 +43,7 @@ class KMSystemTray : public KSystemTray Q_OBJECT public: /** construtor */ - KMSystemTray(QWidget* parent=0, const char *name=0); + KMSystemTray(TQWidget* parent=0, const char *name=0); /** destructor */ ~KMSystemTray(); @@ -59,18 +59,18 @@ private slots: void updateNewMessages(); protected: - void mousePressEvent(QMouseEvent *); + void mousePressEvent(TQMouseEvent *); bool mainWindowIsOnCurrentDesktop(); void showKMail(); void buildPopupMenu(); void updateCount(); - QString prettyName(KMFolder *); + TQString prettyName(KMFolder *); private: bool mParentVisible; - QPoint mPosOfMainWin; + TQPoint mPosOfMainWin; int mDesktopOfMainWin; int mMode; @@ -78,13 +78,13 @@ private: int mNewMessagePopupId; KPopupMenu * mPopupMenu; - QPixmap mDefaultIcon; - QImage mLightIconImage; + TQPixmap mDefaultIcon; + TQImage mLightIconImage; - QValueVector<KMFolder*> mPopupFolders; - QMap<QGuardedPtr<KMFolder>, int> mFoldersWithUnread; - QMap<QGuardedPtr<KMFolder>, bool> mPendingUpdates; - QTimer *mUpdateTimer; + TQValueVector<KMFolder*> mPopupFolders; + TQMap<TQGuardedPtr<KMFolder>, int> mFoldersWithUnread; + TQMap<TQGuardedPtr<KMFolder>, bool> mPendingUpdates; + TQTimer *mUpdateTimer; time_t mLastUpdate; }; |