diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /korganizer/koeditorgeneraltodo.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'korganizer/koeditorgeneraltodo.h')
-rw-r--r-- | korganizer/koeditorgeneraltodo.h | 34 |
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; }; |