diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 06:00:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-06-11 06:00:15 +0000 |
commit | b1057f437bf65300831a0ccb45b920787c6b318d (patch) | |
tree | f8a73db06ca1180d0da0ba6dfbe786197b4f4bc3 /noatun/modules/splitplaylist/view.h | |
parent | 4ddfca384ced9ad654213aef9dc2c3973720b980 (diff) | |
download | tdemultimedia-b1057f437bf65300831a0ccb45b920787c6b318d.tar.gz tdemultimedia-b1057f437bf65300831a0ccb45b920787c6b318d.zip |
TQt4 port kdemultimedia
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1236079 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'noatun/modules/splitplaylist/view.h')
-rw-r--r-- | noatun/modules/splitplaylist/view.h | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/noatun/modules/splitplaylist/view.h b/noatun/modules/splitplaylist/view.h index 785608fd..293276ca 100644 --- a/noatun/modules/splitplaylist/view.h +++ b/noatun/modules/splitplaylist/view.h @@ -16,13 +16,13 @@ namespace KIO { class ListJob; } class SafeListViewItem - : public QCheckListItem + : public TQCheckListItem , public PlaylistItemData , public DownloadItem { public: - SafeListViewItem(TQListView *parent, TQListViewItem *after, const KURL &text); - SafeListViewItem(TQListView *parent, TQListViewItem *after, const TQMap<TQString,TQString> &properties); + SafeListViewItem(TQListView *tqparent, TQListViewItem *after, const KURL &text); + SafeListViewItem(TQListView *tqparent, TQListViewItem *after, const TQMap<TQString,TQString> &properties); virtual ~SafeListViewItem(); virtual TQString property(const TQString &, const TQString & = 0) const; @@ -58,9 +58,10 @@ private: class List : public KListView { Q_OBJECT + TQ_OBJECT friend class View; public: - List(View *parent); + List(View *tqparent); virtual ~List(); TQListViewItem *openGlobal(const KURL&, TQListViewItem * =0); TQListViewItem *importGlobal(const KURL&, TQListViewItem * =0); @@ -105,6 +106,7 @@ class KToolBar; class View : public KMainWindow { Q_OBJECT + TQ_OBJECT public: View(SplitPlaylist *mother); // load the SM playlist @@ -125,7 +127,7 @@ public slots: void openNew(); void setSorting(bool on, int column = 0); void setNoSorting() { setSorting(false); } - void headerClicked(int column);void find(); + void headerClicked(int column);void tqfind(); void findIt(Finder *); |