diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:49:52 +0000 |
commit | cfc42a28c327b96c6a2afee92af3bac1a479eb8a (patch) | |
tree | e3219edf5f827eaa4db3feb509a17846a1a5a752 /kteatime/timeedit.h | |
parent | a73fc4d7e66fe0824313aa4e9a650c4cddef6e9f (diff) | |
download | tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.tar.gz tdetoys-cfc42a28c327b96c6a2afee92af3bac1a479eb8a.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdetoys@1157650 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kteatime/timeedit.h')
-rw-r--r-- | kteatime/timeedit.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kteatime/timeedit.h b/kteatime/timeedit.h index cc03f58..445861e 100644 --- a/kteatime/timeedit.h +++ b/kteatime/timeedit.h @@ -8,8 +8,8 @@ #ifndef TIMEEDIT_H #define TIMEEDIT_H -#include <qspinbox.h> -#include <qwidget.h> +#include <tqspinbox.h> +#include <tqwidget.h> class QBoxLayout; @@ -23,7 +23,7 @@ class WrappingSpinBox : public QSpinBox Q_OBJECT public: - WrappingSpinBox(int minValue, int maxValue, int step = 1, QWidget *parent=0, const char *name=0); + WrappingSpinBox(int minValue, int maxValue, int step = 1, TQWidget *parent=0, const char *name=0); ~WrappingSpinBox(); void stepUp(); @@ -44,7 +44,7 @@ class TimeEdit : public QWidget Q_OBJECT public: - TimeEdit(QWidget* parent = 0, const char* name = 0); + TimeEdit(TQWidget* parent = 0, const char* name = 0); ~TimeEdit(); void setValue(int value); @@ -63,9 +63,9 @@ signals: protected: - QSpinBox *minuteBox; + TQSpinBox *minuteBox; WrappingSpinBox *secondBox; - QBoxLayout* layout; + TQBoxLayout* layout; }; #endif |