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/knotes/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/knotes/summarywidget.h')
-rw-r--r-- | kontact/plugins/knotes/summarywidget.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kontact/plugins/knotes/summarywidget.h b/kontact/plugins/knotes/summarywidget.h index f21d829fa..dff4319ac 100644 --- a/kontact/plugins/knotes/summarywidget.h +++ b/kontact/plugins/knotes/summarywidget.h @@ -26,9 +26,9 @@ #include "summary.h" -#include <qmap.h> -#include <qptrlist.h> -#include <qwidget.h> +#include <tqmap.h> +#include <tqptrlist.h> +#include <tqwidget.h> #include <libkcal/resourcelocal.h> #include <libkcal/calendarresources.h> @@ -45,15 +45,15 @@ class KNotesSummaryWidget : public Kontact::Summary Q_OBJECT public: - KNotesSummaryWidget( Kontact::Plugin *plugin, QWidget *parent, const char *name = 0 ); + KNotesSummaryWidget( Kontact::Plugin *plugin, TQWidget *parent, const char *name = 0 ); void updateSummary( bool force = false ) { Q_UNUSED( force ); updateView(); } protected: - virtual bool eventFilter( QObject *obj, QEvent* e ); + virtual bool eventFilter( TQObject *obj, TQEvent* e ); protected slots: - void urlClicked( const QString& ); + void urlClicked( const TQString& ); void updateView(); void addNote( KCal::Journal* ); void removeNote( KCal::Journal* ); @@ -62,9 +62,9 @@ class KNotesSummaryWidget : public Kontact::Summary KCal::CalendarLocal *mCalendar; KCal::Journal::List mNotes; - QGridLayout *mLayout; + TQGridLayout *mLayout; - QPtrList<QLabel> mLabels; + TQPtrList<TQLabel> mLabels; Kontact::Plugin *mPlugin; }; |