summaryrefslogtreecommitdiffstats
path: root/kcontrol/joystick/joywidget.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:33:34 +0000
commitc663b6440964f6ac48027143ac9e63298991f9d0 (patch)
tree6d8b0c5a5f9db1ee16acf98b1397cea9126b281d /kcontrol/joystick/joywidget.h
parenta061f7191beebb0e4a3b0c0a7c534ec5f22f2dc7 (diff)
downloadtdebase-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 'kcontrol/joystick/joywidget.h')
-rw-r--r--kcontrol/joystick/joywidget.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kcontrol/joystick/joywidget.h b/kcontrol/joystick/joywidget.h
index 5f561c0e5..d857229e8 100644
--- a/kcontrol/joystick/joywidget.h
+++ b/kcontrol/joystick/joywidget.h
@@ -21,7 +21,7 @@
#ifndef _JOYWIDGET_H_
#define _JOYWIDGET_H_
-#include <qwidget.h>
+#include <tqwidget.h>
class JoyDevice;
@@ -40,7 +40,7 @@ class JoyWidget : public QWidget
Q_OBJECT
public:
- JoyWidget(QWidget *parent = 0, const char *name = 0);
+ JoyWidget(TQWidget *parent = 0, const char *name = 0);
~JoyWidget();
@@ -53,7 +53,7 @@ class JoyWidget : public QWidget
private slots:
void checkDevice();
- void deviceChanged(const QString &dev);
+ void deviceChanged(const TQString &dev);
void traceChanged(bool);
void calibrateDevice();
@@ -62,16 +62,16 @@ class JoyWidget : public QWidget
void restoreCurrDev(); // restores the content of the combobox to reflect the current open device
private:
- QHBox *messageBox;
- QLabel *message; // in case of no device, show here a message rather than in a dialog
- QComboBox *device;
+ TQHBox *messageBox;
+ TQLabel *message; // in case of no device, show here a message rather than in a dialog
+ TQComboBox *device;
PosWidget *xyPos;
- QTable *buttonTbl;
- QTable *axesTbl;
- QCheckBox *trace;
- QPushButton *calibrate;
+ TQTable *buttonTbl;
+ TQTable *axesTbl;
+ TQCheckBox *trace;
+ TQPushButton *calibrate;
- QTimer *idle;
+ TQTimer *idle;
JoyDevice *joydev;
};