summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/fractioninput.h
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/widgets/fractioninput.h')
-rw-r--r--krecipes/src/widgets/fractioninput.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/krecipes/src/widgets/fractioninput.h b/krecipes/src/widgets/fractioninput.h
index 6b49020..37a9b76 100644
--- a/krecipes/src/widgets/fractioninput.h
+++ b/krecipes/src/widgets/fractioninput.h
@@ -15,7 +15,7 @@
#include "datablocks/mixednumber.h"
-class QTimer;
+class TQTimer;
/** A KLineEdit widget extended to allow input of decimals and fractions or ranges of such.
* Input is returned as a @ref MixedNumber class.
@@ -26,7 +26,7 @@ class FractionInput : public KLineEdit
Q_OBJECT
public:
- FractionInput( QWidget *parent = 0, MixedNumber::Format = MixedNumber::MixedNumberFormat );
+ FractionInput( TQWidget *parent = 0, MixedNumber::Format = MixedNumber::MixedNumberFormat );
~FractionInput();
void setAllowRange( bool b ){ m_allowRange = b; }
@@ -54,7 +54,7 @@ private slots:
private:
bool m_allowRange;
- QTimer *m_validateTimer;
+ TQTimer *m_validateTimer;
MixedNumber::Format m_format;
};