diff options
Diffstat (limited to 'krita/ui/kis_label_cursor_pos.h')
-rw-r--r-- | krita/ui/kis_label_cursor_pos.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/krita/ui/kis_label_cursor_pos.h b/krita/ui/kis_label_cursor_pos.h index 3923c61d..392a0b68 100644 --- a/krita/ui/kis_label_cursor_pos.h +++ b/krita/ui/kis_label_cursor_pos.h @@ -18,24 +18,25 @@ #ifndef KIS_LABEL_CURSOR_POS_H_ #define KIS_LABEL_CURSOR_POS_H_ -#include <qlabel.h> +#include <tqlabel.h> -class KisLabelCursorPos : public QLabel { +class KisLabelCursorPos : public TQLabel { Q_OBJECT - typedef QLabel super; + TQ_OBJECT + typedef TQLabel super; public: - KisLabelCursorPos(QWidget *parent, const char *name = 0, WFlags f = 0); + KisLabelCursorPos(TQWidget *tqparent, const char *name = 0, WFlags f = 0); virtual ~KisLabelCursorPos(); public slots: - void updatePos(Q_INT32 xpos, Q_INT32 ypos); + void updatePos(TQ_INT32 xpos, TQ_INT32 ypos); void enter(); void leave(); private: bool m_doUpdates; - Q_INT32 m_ypos; + TQ_INT32 m_ypos; }; #endif // KIS_LABEL_CURSOR_POS_H_ |