diff options
Diffstat (limited to 'kiten/deinf.h')
-rw-r--r-- | kiten/deinf.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kiten/deinf.h b/kiten/deinf.h index 8db2e811..ca776289 100644 --- a/kiten/deinf.h +++ b/kiten/deinf.h @@ -21,16 +21,16 @@ #ifndef DEFINF_H #define DEFINF_H -#include <qmap.h> -#include <qstringlist.h> +#include <tqmap.h> +#include <tqstringlist.h> namespace Deinf { struct Conjugation { - QString ending; - QString replace; + TQString ending; + TQString replace; unsigned int num; }; @@ -39,12 +39,12 @@ class KDE_EXPORT Index public: Index(); - QStringList deinflect(const QString &, QStringList &); + TQStringList deinflect(const TQString &, TQStringList &); private: void load(); - QMap<unsigned int, QString> names; - QValueList<Conjugation> list; + TQMap<unsigned int, TQString> names; + TQValueList<Conjugation> list; bool loaded; }; |