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 /korganizer/kolistview.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 'korganizer/kolistview.h')
-rw-r--r-- | korganizer/kolistview.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/korganizer/kolistview.h b/korganizer/kolistview.h index d2586ea4a..6da6988a8 100644 --- a/korganizer/kolistview.h +++ b/korganizer/kolistview.h @@ -26,8 +26,8 @@ #ifndef _KOLISTVIEW_H #define _KOLISTVIEW_H -#include <qdict.h> -#include <qtooltip.h> +#include <tqdict.h> +#include <tqtooltip.h> #include <libkcal/incidence.h> @@ -43,10 +43,10 @@ class KOListView; class KOListViewToolTip : public QToolTip { public: - KOListViewToolTip (QWidget* parent, KListView* lv ); + KOListViewToolTip (TQWidget* parent, KListView* lv ); protected: - void maybeTip( const QPoint & pos); + void maybeTip( const TQPoint & pos); private: KListView* eventlist; @@ -67,7 +67,7 @@ class KOListView : public KOEventView { Q_OBJECT public: - KOListView(Calendar *calendar, QWidget *parent = 0, + KOListView(Calendar *calendar, TQWidget *parent = 0, const char *name = 0); ~KOListView(); @@ -85,7 +85,7 @@ class KOListView : public KOEventView public slots: virtual void updateView(); - virtual void showDates( const QDate &start, const QDate &end ); + virtual void showDates( const TQDate &start, const TQDate &end ); virtual void showIncidences( const Incidence::List &incidenceList ); void clearSelection(); @@ -95,8 +95,8 @@ class KOListView : public KOEventView void changeIncidenceDisplay(Incidence *, int); - void defaultItemAction(QListViewItem *item); - void popupMenu(QListViewItem *item,const QPoint &,int); + void defaultItemAction(TQListViewItem *item); + void popupMenu(TQListViewItem *item,const TQPoint &,int); protected slots: void processSelectionChange(); @@ -111,7 +111,7 @@ class KOListView : public KOEventView KListView *mListView; KOEventPopupMenu *mPopupMenu; KOListViewItem *mActiveItem; - QDict<Incidence> mUidDict; + TQDict<Incidence> mUidDict; DateList mSelectedDates; }; |