summaryrefslogtreecommitdiffstats
path: root/src/trayhoverpopup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/trayhoverpopup.h')
-rw-r--r--src/trayhoverpopup.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/trayhoverpopup.h b/src/trayhoverpopup.h
index ee03f6a..913b778 100644
--- a/src/trayhoverpopup.h
+++ b/src/trayhoverpopup.h
@@ -40,11 +40,11 @@
#ifndef TRAYHOVERPOPUP_H
#define TRAYHOVERPOPUP_H
-#include <qtimer.h>
+#include <ntqtimer.h>
#include <kpassivepopup.h>
-class QLabel;
-class QPixmap;
+class TQLabel;
+class TQPixmap;
/**
@author Joris Guisson <joris.guisson@gmail.com>
@@ -55,7 +55,7 @@ class TrayHoverPopup : public KPassivePopup
{
Q_OBJECT
public:
- TrayHoverPopup(const QPixmap & pix,QWidget *parent = 0, const char *name = 0 );
+ TrayHoverPopup(const TQPixmap & pix,TQWidget *parent = 0, const char *name = 0 );
virtual ~TrayHoverPopup();
/// Cursor entered system tray icon
@@ -65,7 +65,7 @@ public:
void leaveEvent();
/// Update the text which is shown
- void updateText(const QString & msg);
+ void updateText(const TQString & msg);
public slots:
void contextMenuAboutToShow();
@@ -80,10 +80,10 @@ private slots:
private:
- const QPixmap & pix;
- QTimer hover_timer;
- QTimer show_timer;
- QLabel* text;
+ const TQPixmap & pix;
+ TQTimer hover_timer;
+ TQTimer show_timer;
+ TQLabel* text;
bool context_menu_shown;
bool cursor_over_icon;
};