summaryrefslogtreecommitdiffstats
path: root/korganizer/koeditorgeneraltodo.h
diff options
context:
space:
mode:
Diffstat (limited to 'korganizer/koeditorgeneraltodo.h')
-rw-r--r--korganizer/koeditorgeneraltodo.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/korganizer/koeditorgeneraltodo.h b/korganizer/koeditorgeneraltodo.h
index d3e051866..7ebc1f7ef 100644
--- a/korganizer/koeditorgeneraltodo.h
+++ b/korganizer/koeditorgeneraltodo.h
@@ -25,7 +25,7 @@
#define _KOEDITORGENERALTODO_H
#include "koeditorgeneral.h"
-#include <qdatetime.h>
+#include <tqdatetime.h>
class KRestrictedLine;
@@ -41,18 +41,18 @@ class KOEditorGeneralTodo : public KOEditorGeneral
{
Q_OBJECT
public:
- KOEditorGeneralTodo (QObject* parent=0,const char* name=0);
+ KOEditorGeneralTodo (TQObject* parent=0,const char* name=0);
virtual ~KOEditorGeneralTodo();
- void initTime(QWidget *, QBoxLayout *);
- void initStatus(QWidget *, QBoxLayout *);
- void initCompletion(QWidget *, QBoxLayout *);
- void initPriority(QWidget *, QBoxLayout *);
+ void initTime(TQWidget *, TQBoxLayout *);
+ void initStatus(TQWidget *, TQBoxLayout *);
+ void initCompletion(TQWidget *, TQBoxLayout *);
+ void initPriority(TQWidget *, TQBoxLayout *);
void finishSetup();
/** Set widgets to default values */
- void setDefaults( const QDateTime &due, bool allDay );
+ void setDefaults( const TQDateTime &due, bool allDay );
/** Read todo object and setup widgets accordingly */
void readTodo(Todo *todo, Calendar *calendar);
/** Write todo settings to event object */
@@ -66,8 +66,8 @@ class KOEditorGeneralTodo : public KOEditorGeneral
signals:
void dueDateEditToggle( bool );
- void dateTimeStrChanged( const QString & );
- void signalDateTimeChanged( const QDateTime &, const QDateTime & );
+ void dateTimeStrChanged( const TQString & );
+ void signalDateTimeChanged( const TQDateTime &, const TQDateTime & );
protected slots:
void completedChanged(int);
@@ -88,21 +88,21 @@ class KOEditorGeneralTodo : public KOEditorGeneral
KDateEdit *mStartDateEdit;
KTimeEdit *mStartTimeEdit;
- QCheckBox *mTimeButton;
- QCheckBox *mDueCheck;
+ TQCheckBox *mTimeButton;
+ TQCheckBox *mDueCheck;
KDateEdit *mDueDateEdit;
KTimeEdit *mDueTimeEdit;
- QComboBox *mCompletedCombo;
- QLabel *mCompletedLabel;
- QLabel *mPriorityLabel;
- QComboBox *mPriorityCombo;
+ TQComboBox *mCompletedCombo;
+ TQLabel *mCompletedLabel;
+ TQLabel *mPriorityLabel;
+ TQComboBox *mPriorityCombo;
KDateEdit *mCompletionDateEdit;
KTimeEdit *mCompletionTimeEdit;
- QCheckBox *mStartCheck;
+ TQCheckBox *mStartCheck;
- QDateTime mCompleted;
+ TQDateTime mCompleted;
};