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 /libk3bdevice/k3btrack.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 'libk3bdevice/k3btrack.h')
-rw-r--r-- | libk3bdevice/k3btrack.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libk3bdevice/k3btrack.h b/libk3bdevice/k3btrack.h index f68cc86..7e42b03 100644 --- a/libk3bdevice/k3btrack.h +++ b/libk3bdevice/k3btrack.h @@ -18,8 +18,8 @@ #ifndef K3BTRACK_H #define K3BTRACK_H -#include <qcstring.h> -#include <qvaluevector.h> +#include <tqcstring.h> +#include <tqvaluevector.h> #include <k3bmsf.h> #include "k3bdevice_export.h" @@ -75,8 +75,8 @@ namespace K3bDevice bool recordedIncremental() const { return m_preEmphasis; } bool recordedUninterrupted() const { return !recordedIncremental(); } - const QCString& isrc() const { return m_isrc; } - void setIsrc( const QCString& s ) { m_isrc = s; } + const TQCString& isrc() const { return m_isrc; } + void setIsrc( const TQCString& s ) { m_isrc = s; } const K3b::Msf& firstSector() const { return m_firstSector; } const K3b::Msf& lastSector() const { return m_lastSector; } @@ -120,7 +120,7 @@ namespace K3bDevice * All indices. Normally this list is empty as indices are rarely used. * Starts with index 2 (since index 1 are all other sectors FIXME) */ - const QValueVector<K3b::Msf>& indices() const { return m_indices; } + const TQValueVector<K3b::Msf>& indices() const { return m_indices; } bool operator==( const Track& ) const; bool operator!=( const Track& ) const; @@ -140,9 +140,9 @@ namespace K3bDevice int m_session; - QValueVector<K3b::Msf> m_indices; + TQValueVector<K3b::Msf> m_indices; - QCString m_isrc; + TQCString m_isrc; }; } |