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/k3bvideocdrip.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/k3bvideocdrip.h')
-rw-r--r-- | src/rip/k3bvideocdrip.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/rip/k3bvideocdrip.h b/src/rip/k3bvideocdrip.h index fe0d6f9..a47f1d0 100644 --- a/src/rip/k3bvideocdrip.h +++ b/src/rip/k3bvideocdrip.h @@ -20,22 +20,23 @@ #include <k3bdiskinfo.h> #include "k3bvideocdrippingoptions.h" -class QString; +class TQString; class KProcess; -class QDataStream; +class TQDataStream; class K3bVideoCdRip : public K3bJob { Q_OBJECT + TQ_OBJECT public: - K3bVideoCdRip( K3bJobHandler*, K3bVideoCdRippingOptions* options, QObject* parent = 0, const char* name = 0 ); + K3bVideoCdRip( K3bJobHandler*, K3bVideoCdRippingOptions* options, TQObject* tqparent = 0, const char* name = 0 ); ~K3bVideoCdRip(); enum { CDROM, BIN_IMAGE, NRG_IMAGE }; - QString jobDescription() const; - QString jobDetails() const; + TQString jobDescription() const; + TQString jobDetails() const; public slots: void start(); @@ -50,7 +51,7 @@ class K3bVideoCdRip : public K3bJob private: void vcdxRip(); - void parseInformation( QString ); + void parseInformation( TQString ); enum { stageUnknown, stageScan, stageFinished, _stage_max }; @@ -61,7 +62,7 @@ class K3bVideoCdRip : public K3bJob long m_subPosition; - QString m_collectedOutput; + TQString m_collectedOutput; K3bVideoCdRippingOptions * m_videooptions; |