diff options
Diffstat (limited to 'krita/ui/kis_button_event.h')
-rw-r--r-- | krita/ui/kis_button_event.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/krita/ui/kis_button_event.h b/krita/ui/kis_button_event.h index e8b7fc2b..f9b6a385 100644 --- a/krita/ui/kis_button_event.h +++ b/krita/ui/kis_button_event.h @@ -23,7 +23,7 @@ class KisButtonEvent : public KisEvent { typedef KisEvent super; public: - Qt::ButtonState button() const { return m_button; } + TQt::ButtonState button() const { return m_button; } protected: KisButtonEvent() {} @@ -33,12 +33,12 @@ protected: const KisPoint& globalPos, double pressure, double xTilt, double yTilt, - Qt::ButtonState button, - Qt::ButtonState state) + TQt::ButtonState button, + TQt::ButtonState state) : super(type, device, pos, globalPos, pressure, xTilt, yTilt, state) , m_button(button) {} - Qt::ButtonState m_button; + TQt::ButtonState m_button; }; #endif // KIS_BUTTON_EVENT_H_ |