diff options
Diffstat (limited to 'libkcddb/genres.h')
-rw-r--r-- | libkcddb/genres.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libkcddb/genres.h b/libkcddb/genres.h index 4456f894..1e7cab81 100644 --- a/libkcddb/genres.h +++ b/libkcddb/genres.h @@ -8,8 +8,8 @@ #ifndef KCDDB_GENRES_H #define KCDDB_GENRES_H -#include <qstring.h> -#include <qstringlist.h> +#include <tqstring.h> +#include <tqstringlist.h> namespace KCDDB { @@ -22,21 +22,21 @@ namespace KCDDB public: Genres(); - const QStringList &cddbList() const { return m_cddb; }; - const QStringList &i18nList() const { return m_i18n; }; + const TQStringList &cddbList() const { return m_cddb; }; + const TQStringList &i18nList() const { return m_i18n; }; /** * Lookup the CDDB genre, and return the i18n'd version. */ - const QString cddb2i18n(const QString &genre) const; + const TQString cddb2i18n(const TQString &genre) const; /** * Lookup the i18n genre, and return the CDDB version if we can. */ - const QString i18n2cddb(const QString &genre) const; + const TQString i18n2cddb(const TQString &genre) const; private: - QStringList m_cddb; - QStringList m_i18n; + TQStringList m_cddb; + TQStringList m_i18n; }; } |