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/lookup.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/lookup.h')
-rw-r--r-- | libkcddb/lookup.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libkcddb/lookup.h b/libkcddb/lookup.h index 07575bc2..96538ac5 100644 --- a/libkcddb/lookup.h +++ b/libkcddb/lookup.h @@ -24,12 +24,12 @@ #include "cddb.h" #include "cdinfo.h" -#include <qobject.h> +#include <tqobject.h> namespace KCDDB { - typedef QPair<QString, QString> CDDBMatch; - typedef QValueList<CDDBMatch> CDDBMatchList; + typedef QPair<TQString, TQString> CDDBMatch; + typedef TQValueList<CDDBMatch> CDDBMatchList; class Lookup : public CDDB, public QObject { @@ -45,19 +45,19 @@ namespace KCDDB Lookup(); virtual ~Lookup(); - virtual Result lookup( const QString &, uint, const TrackOffsetList & ) = 0; + virtual Result lookup( const TQString &, uint, const TrackOffsetList & ) = 0; CDInfoList lookupResponse() const; protected: - void parseExtraMatch( const QString & ); - Result parseQuery( const QString & ); - Result parseRead( const QString & ); + void parseExtraMatch( const TQString & ); + Result parseQuery( const TQString & ); + Result parseRead( const TQString & ); CDInfoList cdInfoList_; CDDBMatchList matchList_; - QString category_; + TQString category_; }; } |