diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:43:15 +0000 |
commit | e654398e46e37abf457b2b1122ab898d2c51c49f (patch) | |
tree | d39ee6440f3c3663c3ead84a2d4cc2d034667e96 /libkcddb/cddb.h | |
parent | e4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff) | |
download | tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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_; |