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/koeditorgeneraljournal.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/koeditorgeneraljournal.h')
-rw-r--r-- | korganizer/koeditorgeneraljournal.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/korganizer/koeditorgeneraljournal.h b/korganizer/koeditorgeneraljournal.h index 38fe4e525..a2645c221 100644 --- a/korganizer/koeditorgeneraljournal.h +++ b/korganizer/koeditorgeneraljournal.h @@ -25,8 +25,8 @@ #ifndef KOEDITORGENERALJOURNAL_H #define KOEDITORGENERALJOURNAL_H -#include <qobject.h> -#include <qdatetime.h> +#include <tqobject.h> +#include <tqdatetime.h> class KDateEdit; class KTimeEdit; @@ -47,17 +47,17 @@ class KOEditorGeneralJournal : public QObject { Q_OBJECT public: - KOEditorGeneralJournal ( QObject* parent=0, const char* name=0 ); + KOEditorGeneralJournal ( TQObject* parent=0, const char* name=0 ); virtual ~KOEditorGeneralJournal(); - void initDate( QWidget *, QBoxLayout * ); - void initDescription( QWidget *, QBoxLayout * ); - void initTitle( QWidget *parent, QBoxLayout *topLayout ); + void initDate( TQWidget *, TQBoxLayout * ); + void initDescription( TQWidget *, TQBoxLayout * ); + void initTitle( TQWidget *parent, TQBoxLayout *topLayout ); /** Set widgets to default values */ - void setDefaults( const QDate &date ); - void setDate( const QDate &date ); - void setTime( const QTime &time ); + void setDefaults( const TQDate &date ); + void setDate( const TQDate &date ); + void setTime( const TQTime &time ); /** Read journal object and setup widgets accordingly */ void readJournal( Journal *, bool tmpl = false ); /** Write journal settings to event object */ @@ -66,17 +66,17 @@ class KOEditorGeneralJournal : public QObject /** Check if the input is valid. */ bool validateInput(); - void setDescription( const QString &text ); - void setSummary( const QString &text ); + void setDescription( const TQString &text ); + void setSummary( const TQString &text ); void finishSetup(); protected: - QLineEdit *mSummaryEdit; - QLabel *mSummaryLabel; + TQLineEdit *mSummaryEdit; + TQLabel *mSummaryLabel; KTextEdit *mDescriptionEdit; - QLabel *mDateLabel; + TQLabel *mDateLabel; KDateEdit *mDateEdit; - QCheckBox *mTimeCheckBox; + TQCheckBox *mTimeCheckBox; KTimeEdit *mTimeEdit; }; |