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/k3btoc.cpp | |
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/k3btoc.cpp')
-rw-r--r-- | libk3bdevice/k3btoc.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libk3bdevice/k3btoc.cpp b/libk3bdevice/k3btoc.cpp index 570bc9e..3ee39f1 100644 --- a/libk3bdevice/k3btoc.cpp +++ b/libk3bdevice/k3btoc.cpp @@ -17,17 +17,17 @@ #include "k3btoc.h" #include "k3bdebug.h" -#include <qstring.h> +#include <tqstring.h> K3bDevice::Toc::Toc() - : QValueList<K3bDevice::Track>() + : TQValueList<K3bDevice::Track>() { } K3bDevice::Toc::Toc( const Toc& toc ) - : QValueList<K3bDevice::Track>( toc ) + : TQValueList<K3bDevice::Track>( toc ) { m_firstSector = toc.firstSector(); } @@ -44,7 +44,7 @@ K3bDevice::Toc& K3bDevice::Toc::operator=( const Toc& toc ) m_firstSector = toc.firstSector(); - QValueList<K3bDevice::Track>::operator=( toc ); + TQValueList<K3bDevice::Track>::operator=( toc ); return *this; } @@ -125,7 +125,7 @@ int K3bDevice::Toc::sessions() const void K3bDevice::Toc::clear() { - QValueList<Track>::clear(); + TQValueList<Track>::clear(); m_mcn.resize( 0 ); m_firstSector = 0; } @@ -152,12 +152,12 @@ void K3bDevice::Toc::debug() const bool K3bDevice::Toc::operator==( const Toc& other ) const { return( m_firstSector == other.m_firstSector && - QValueList<Track>::operator==( other ) ); + TQValueList<Track>::operator==( other ) ); } bool K3bDevice::Toc::operator!=( const Toc& other ) const { return( m_firstSector != other.m_firstSector || - QValueList<Track>::operator!=( other ) ); + TQValueList<Track>::operator!=( other ) ); } |