summaryrefslogtreecommitdiffstats
path: root/src/komposeviewmanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/komposeviewmanager.h')
-rw-r--r--src/komposeviewmanager.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/komposeviewmanager.h b/src/komposeviewmanager.h
index 8117f6d..a840f49 100644
--- a/src/komposeviewmanager.h
+++ b/src/komposeviewmanager.h
@@ -12,19 +12,19 @@
#ifndef KOMPOSEVIEWMANAGER_H
#define KOMPOSEVIEWMANAGER_H
-#include <qpoint.h>
+#include <tqpoint.h>
#include <dcopobject.h>
#include "komposedcopiface.h"
#include "komposefullscreenwidget.h"
class KomposeTask;
-class QTimer;
+class TQTimer;
/**
@author Hans Oischinger
*/
-class KomposeViewManager : public QObject, virtual public KomposeDcopIface
+class KomposeViewManager : public TQObject, virtual public KomposeDcopIface
{
Q_OBJECT
protected:
@@ -56,7 +56,7 @@ protected slots:
void checkCursorPos();
void reCheckCursorPos();
- void uglyQtHackInitFunction();
+ void uglyTQtHackInitFunction();
void slotStartCursorUpdateTimer();
signals:
@@ -68,12 +68,12 @@ private:
bool blockScreenshots; // no screenshots when true
int deskBeforeSnaps; // the virtual desk we were on befor screenshots were taken
- QTimer *cursorUpdateTimer;
+ TQTimer *cursorUpdateTimer;
// The 4 corners
- QPoint topLeftCorner;
- QPoint topRightCorner;
- QPoint bottomLeftCorner;
- QPoint bottomRightCorner;
+ TQPoint topLeftCorner;
+ TQPoint topRightCorner;
+ TQPoint bottomLeftCorner;
+ TQPoint bottomRightCorner;
};
#endif