diff options
Diffstat (limited to 'kalarm/repetition.h')
-rw-r--r-- | kalarm/repetition.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kalarm/repetition.h b/kalarm/repetition.h index 64837b875..c8a32ce88 100644 --- a/kalarm/repetition.h +++ b/kalarm/repetition.h @@ -21,7 +21,7 @@ #ifndef REPETITION_H #define REPETITION_H -#include <qpushbutton.h> +#include <tqpushbutton.h> #include <kdialogbase.h> class ButtonGroup; @@ -36,7 +36,7 @@ class RepetitionButton : public QPushButton { Q_OBJECT public: - RepetitionButton(const QString& caption, bool waitForInitialisation, QWidget* parent, const char* name = 0); + RepetitionButton(const TQString& caption, bool waitForInitialisation, TQWidget* parent, const char* name = 0); void set(int interval, int count); void set(int interval, int count, bool dateOnly, int maxDuration = -1); void initialise(int interval, int count, bool dateOnly, int maxDuration = -1); // use only after needsInitialisation() signal @@ -71,7 +71,7 @@ class RepetitionDlg : public KDialogBase { Q_OBJECT public: - RepetitionDlg(const QString& caption, bool readOnly, QWidget* parent = 0, const char* name = 0); + RepetitionDlg(const TQString& caption, bool readOnly, TQWidget* parent = 0, const char* name = 0); void setReadOnly(bool); void set(int interval, int count, bool dateOnly = false, int maxDuration = -1); int interval() const; // get the interval between repetitions, in minutes |