summaryrefslogtreecommitdiffstats
path: root/libk3bdevice/k3btoc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libk3bdevice/k3btoc.cpp')
-rw-r--r--libk3bdevice/k3btoc.cpp14
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 ) );
}