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/specialdates/sdsummarywidget.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/specialdates/sdsummarywidget.h')
-rw-r--r-- | kontact/plugins/specialdates/sdsummarywidget.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kontact/plugins/specialdates/sdsummarywidget.h b/kontact/plugins/specialdates/sdsummarywidget.h index 74cd08942..00e4da223 100644 --- a/kontact/plugins/specialdates/sdsummarywidget.h +++ b/kontact/plugins/specialdates/sdsummarywidget.h @@ -25,8 +25,8 @@ #ifndef SDSUMMARYWIDGET_H #define SDSUMMARYWIDGET_H -#include <qptrlist.h> -#include <qwidget.h> +#include <tqptrlist.h> +#include <tqwidget.h> #include <libkcal/calendarresources.h> #include <libkholidays/kholidays.h> @@ -45,29 +45,29 @@ class SDSummaryWidget : public Kontact::Summary Q_OBJECT public: - SDSummaryWidget( Kontact::Plugin *plugin, QWidget *parent, + SDSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name = 0 ); - QStringList configModules() const; + TQStringList configModules() const; void configUpdated(); 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 mailContact( const QString &uid ); - void viewContact( const QString &uid ); + void popupMenu( const TQString &uid ); + void mailContact( const TQString &uid ); + void viewContact( const TQString &uid ); private: int span( KCal::Event *event ); - int dayof( KCal::Event *event, const QDate &date ); + int dayof( KCal::Event *event, const TQDate &date ); bool initHolidays(); - void dateDiff( const QDate &date, int &days, int &years ); - QGridLayout *mLayout; - QPtrList<QLabel> mLabels; + void dateDiff( const TQDate &date, int &days, int &years ); + TQGridLayout *mLayout; + TQPtrList<TQLabel> mLabels; Kontact::Plugin *mPlugin; KCal::CalendarResources *mCalendar; int mDaysAhead; |