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 /kontact/plugins/korganizer/summarywidget.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 'kontact/plugins/korganizer/summarywidget.h')
-rw-r--r-- | kontact/plugins/korganizer/summarywidget.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kontact/plugins/korganizer/summarywidget.h b/kontact/plugins/korganizer/summarywidget.h index c9c572eca..a88d50dd9 100644 --- a/kontact/plugins/korganizer/summarywidget.h +++ b/kontact/plugins/korganizer/summarywidget.h @@ -24,8 +24,8 @@ #ifndef SUMMARYWIDGET_H #define SUMMARYWIDGET_H -#include <qptrlist.h> -#include <qwidget.h> +#include <tqptrlist.h> +#include <tqwidget.h> #include <libkcal/calendarresources.h> @@ -41,29 +41,29 @@ class SummaryWidget : public Kontact::Summary Q_OBJECT public: - SummaryWidget( KOrganizerPlugin *plugin, QWidget *parent, + SummaryWidget( KOrganizerPlugin *plugin, TQWidget *parent, const char *name = 0 ); ~SummaryWidget(); int summaryHeight() const { return 3; } - QStringList configModules() const; + TQStringList configModules() const; public slots: void updateSummary( bool force = false ) { Q_UNUSED( force ); updateView(); } protected: - virtual bool eventFilter( QObject *obj, QEvent* e ); + virtual bool eventFilter( TQObject *obj, TQEvent* e ); private slots: void updateView(); - void popupMenu( const QString &uid ); - void viewEvent( const QString &uid ); - void removeEvent( const QString &uid ); + void popupMenu( const TQString &uid ); + void viewEvent( const TQString &uid ); + void removeEvent( const TQString &uid ); private: KOrganizerPlugin *mPlugin; - QGridLayout *mLayout; + TQGridLayout *mLayout; - QPtrList<QLabel> mLabels; + TQPtrList<TQLabel> mLabels; KCal::CalendarResources *mCalendar; }; |