From d8cc8bdfa7fa624a526d5aa1626974e1444cb799 Mon Sep 17 00:00:00 2001 From: tpearson Date: Fri, 27 May 2011 19:21:21 +0000 Subject: 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 --- libk3bdevice/k3btoc.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'libk3bdevice/k3btoc.cpp') 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 +#include K3bDevice::Toc::Toc() - : QValueList() + : TQValueList() { } K3bDevice::Toc::Toc( const Toc& toc ) - : QValueList( toc ) + : TQValueList( toc ) { m_firstSector = toc.firstSector(); } @@ -44,7 +44,7 @@ K3bDevice::Toc& K3bDevice::Toc::operator=( const Toc& toc ) m_firstSector = toc.firstSector(); - QValueList::operator=( toc ); + TQValueList::operator=( toc ); return *this; } @@ -125,7 +125,7 @@ int K3bDevice::Toc::sessions() const void K3bDevice::Toc::clear() { - QValueList::clear(); + TQValueList::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::operator==( other ) ); + TQValueList::operator==( other ) ); } bool K3bDevice::Toc::operator!=( const Toc& other ) const { return( m_firstSector != other.m_firstSector || - QValueList::operator!=( other ) ); + TQValueList::operator!=( other ) ); } -- cgit v1.2.1