diff options
author | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:11:34 +0300 |
---|---|---|
committer | Mavridis Philippe <mavridisf@gmail.com> | 2021-03-30 14:11:34 +0300 |
commit | d991b7f387775dc1071fb0c0af78de1c613ca991 (patch) | |
tree | eb7c978130acb1b2c93eeea98be2f647372c6fac /src/komposeviewmanager.h | |
parent | 1bd3c5b42f1570b2100a4986f638f2723ee37ec4 (diff) | |
download | kompose-d991b7f387775dc1071fb0c0af78de1c613ca991.tar.gz kompose-d991b7f387775dc1071fb0c0af78de1c613ca991.zip |
Qt3->TQt conversion.
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
Diffstat (limited to 'src/komposeviewmanager.h')
-rw-r--r-- | src/komposeviewmanager.h | 18 |
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 |