summaryrefslogtreecommitdiffstats
path: root/libkcddb/lookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'libkcddb/lookup.h')
-rw-r--r--libkcddb/lookup.h16
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_;
};
}