diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-05-27 19:21:21 +0000 |
commit | d8cc8bdfa7fa624a526d5aa1626974e1444cb799 (patch) | |
tree | f295f1c545b319963d5357af79fe08991d8141d9 /src/rip/k3baudiocdview.h | |
parent | 2a39a080579fb52a2599c02b2939795385b89093 (diff) | |
download | k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.tar.gz k3b-d8cc8bdfa7fa624a526d5aa1626974e1444cb799.zip |
TQt4 port k3b
This enables compilation under both Qt3 and Qt4
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k3b@1233803 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/rip/k3baudiocdview.h')
-rw-r--r-- | src/rip/k3baudiocdview.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/src/rip/k3baudiocdview.h b/src/rip/k3baudiocdview.h index 257a0f5..f28e3a9 100644 --- a/src/rip/k3baudiocdview.h +++ b/src/rip/k3baudiocdview.h @@ -26,14 +26,14 @@ class K3bListView; class KListView; -class QListViewItem; -class QPoint; +class TQListViewItem; +class TQPoint; class KActionCollection; class KActionMenu; class K3bCddb; -class QLabel; +class TQLabel; class K3bToolBox; -class QDragObject; +class TQDragObject; namespace K3bDevice { @@ -44,9 +44,10 @@ namespace K3bDevice { class K3bAudioCdView : public K3bMediaContentsView { Q_OBJECT + TQ_OBJECT public: - K3bAudioCdView( QWidget* parent = 0, const char * name = 0 ); + K3bAudioCdView( TQWidget* tqparent = 0, const char * name = 0 ); ~K3bAudioCdView(); KActionCollection* actionCollection() const { return m_actionCollection; } @@ -54,16 +55,16 @@ class K3bAudioCdView : public K3bMediaContentsView /** * internal */ - QDragObject* dragObject(); + TQDragObject* dragObject(); public slots: void queryCddb(); private slots: - void slotContextMenu( KListView*, QListViewItem*, const QPoint& ); - void slotItemRenamed( QListViewItem*, const QString&, int ); + void slotContextMenu( KListView*, TQListViewItem*, const TQPoint& ); + void slotItemRenamed( TQListViewItem*, const TQString&, int ); void slotCddbQueryFinished( int ); - void slotTrackSelectionChanged( QListViewItem* ); + void slotTrackSelectionChanged( TQListViewItem* ); void slotSaveCddbLocally(); void slotEditTrackCddb(); @@ -92,7 +93,7 @@ class K3bAudioCdView : public K3bMediaContentsView K3bListView* m_trackView; K3bToolBox* m_toolBox; - QLabel* m_labelLength; + TQLabel* m_labelLength; class AudioTrackViewItem; @@ -100,7 +101,7 @@ class K3bAudioCdView : public K3bMediaContentsView K3bDevice::CdText m_cdText; - QLabel* m_busyInfoLabel; + TQLabel* m_busyInfoLabel; }; |