diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:33:34 +0000 |
commit | c663b6440964f6ac48027143ac9e63298991f9d0 (patch) | |
tree | 6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /khotkeys/kcontrol/gesturerecordpage.h | |
parent | a061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff) | |
download | tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.tar.gz tdebase-c663b6440964f6ac48027143ac9e63298991f9d0.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'khotkeys/kcontrol/gesturerecordpage.h')
-rw-r--r-- | khotkeys/kcontrol/gesturerecordpage.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/khotkeys/kcontrol/gesturerecordpage.h b/khotkeys/kcontrol/gesturerecordpage.h index 2636b47b3..1b95b86fe 100644 --- a/khotkeys/kcontrol/gesturerecordpage.h +++ b/khotkeys/kcontrol/gesturerecordpage.h @@ -12,7 +12,7 @@ #ifndef GESTURE_RECORD_PAGE_H #define GESTURE_RECORD_PAGE_H -#include <qvbox.h> +#include <tqvbox.h> #include "gesturedrawer.h" @@ -31,14 +31,14 @@ class GestureRecordPage : public QVBox Q_OBJECT public: - GestureRecordPage(const QString &gesture, - QWidget *parent, const char *name); + GestureRecordPage(const TQString &gesture, + TQWidget *parent, const char *name); ~GestureRecordPage(); - const QString &getGesture() const { return _gest; } + const TQString &getGesture() const { return _gest; } protected slots: - void slotRecorded(const QString &data); + void slotRecorded(const TQString &data); void slotResetClicked(); signals: @@ -46,12 +46,12 @@ class GestureRecordPage : public QVBox private: GestureRecorder *_recorder; - QPushButton *_resetButton; + TQPushButton *_resetButton; GestureDrawer *_tryOne; GestureDrawer *_tryTwo; GestureDrawer *_tryThree; - QString _gest; + TQString _gest; Q_UINT32 _tryCount; }; |