diff options
Diffstat (limited to 'libkcddb/cddb.h')
-rw-r--r-- | libkcddb/cddb.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/libkcddb/cddb.h b/libkcddb/cddb.h index d0031ebe..04d754c0 100644 --- a/libkcddb/cddb.h +++ b/libkcddb/cddb.h @@ -22,9 +22,9 @@ #ifndef KCDDB_CDDB_H #define KCDDB_CDDB_H -#include <qstring.h> -#include <qpair.h> -#include <qvaluelist.h> +#include <tqstring.h> +#include <tqpair.h> +#include <tqvaluelist.h> #include <kdelibs_export.h> @@ -38,7 +38,7 @@ namespace KCDDB as the first frame of the first track, the last one is the start frame of the leadout track. */ - typedef QValueList<uint> TrackOffsetList; + typedef TQValueList<uint> TrackOffsetList; /** This is just a container class used for interpreting results of CDDB queries. @@ -63,23 +63,23 @@ namespace KCDDB CDDB(); virtual ~CDDB(); - static QString resultToString(Result); - static QString trackOffsetListToId( const TrackOffsetList & ); + static TQString resultToString(Result); + static TQString trackOffsetListToId( const TrackOffsetList & ); - static QString clientName() { return QString::fromLatin1("libkcddb"); } - static QString clientVersion() { return QString::fromLatin1("0.31"); } + static TQString clientName() { return TQString::fromLatin1("libkcddb"); } + static TQString clientVersion() { return TQString::fromLatin1("0.31"); } protected: - bool parseGreeting( const QString & ); - bool parseHandshake( const QString & ); + bool parseGreeting( const TQString & ); + bool parseHandshake( const TQString & ); - uint statusCode( const QString & ); + uint statusCode( const TQString & ); - QString trackOffsetListToId(); - QString trackOffsetListToString(); + TQString trackOffsetListToId(); + TQString trackOffsetListToString(); - QString user_; - QString localHostName_; + TQString user_; + TQString localHostName_; bool readOnly_; |