diff options
Diffstat (limited to 'korganizer/koattendeeeditor.h')
-rw-r--r-- | korganizer/koattendeeeditor.h | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/korganizer/koattendeeeditor.h b/korganizer/koattendeeeditor.h index d7eb8cbdc..0641748f6 100644 --- a/korganizer/koattendeeeditor.h +++ b/korganizer/koattendeeeditor.h @@ -21,7 +21,7 @@ #ifndef KOATTENDEEEDITOR_H #define KOATTENDEEEDITOR_H -#include <qwidget.h> +#include <tqwidget.h> #include <libkcal/attendee.h> class QBoxLayout; @@ -50,7 +50,7 @@ class KOAttendeeEditor : public QWidget { Q_OBJECT public: - KOAttendeeEditor( QWidget *parent, const char *name = 0 ); + KOAttendeeEditor( TQWidget *parent, const char *name = 0 ); virtual void insertAttendee( KCal::Attendee* attendee, bool fetchFB = true ) = 0; @@ -68,8 +68,8 @@ class KOAttendeeEditor : public QWidget void updateAttendeeSummary( int count ); protected: - void initOrganizerWidgets( QWidget *parent, QBoxLayout *layout ); - void initEditWidgets( QWidget *parent, QBoxLayout *layout ); + void initOrganizerWidgets( TQWidget *parent, TQBoxLayout *layout ); + void initEditWidgets( TQWidget *parent, TQBoxLayout *layout ); /** Reads values from a KABC::Addressee and inserts a new Attendee * item into the listview with those items. Used when adding attendees @@ -85,7 +85,7 @@ class KOAttendeeEditor : public QWidget virtual void changeStatusForMe( KCal::Attendee::PartStat status ) = 0; - virtual bool eventFilter( QObject *, QEvent *); + virtual bool eventFilter( TQObject *, TQEvent *); protected slots: void addNewAttendee(); @@ -99,23 +99,23 @@ class KOAttendeeEditor : public QWidget protected: KPIM::AddresseeLineEdit *mNameEdit; - QString mUid; - QComboBox* mRoleCombo; - QCheckBox* mRsvpButton; - QComboBox* mStatusCombo; + TQString mUid; + TQComboBox* mRoleCombo; + TQCheckBox* mRsvpButton; + TQComboBox* mStatusCombo; - QHBox* mOrganizerHBox; - QComboBox *mOrganizerCombo; // either we organize it (combo shown) - QLabel *mOrganizerLabel; // or someone else does (just a label is shown) + TQHBox* mOrganizerHBox; + TQComboBox *mOrganizerCombo; // either we organize it (combo shown) + TQLabel *mOrganizerLabel; // or someone else does (just a label is shown) - QLabel* mDelegateLabel; + TQLabel* mDelegateLabel; - QPushButton* mAddButton; - QPushButton* mRemoveButton; - QPushButton* mAddressBookButton; + TQPushButton* mAddButton; + TQPushButton* mRemoveButton; + TQPushButton* mAddressBookButton; - QPtrList<KCal::Attendee> mdelAttendees; - QPtrList<KCal::Attendee> mnewAttendees; + TQPtrList<KCal::Attendee> mdelAttendees; + TQPtrList<KCal::Attendee> mnewAttendees; private: bool mDisableItemUpdate; |