diff options
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; }; |