diff options
Diffstat (limited to 'libkdepim/kmailcompletion.h')
-rw-r--r-- | libkdepim/kmailcompletion.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libkdepim/kmailcompletion.h b/libkdepim/kmailcompletion.h index c8db7bea3..e56eb77cd 100644 --- a/libkdepim/kmailcompletion.h +++ b/libkdepim/kmailcompletion.h @@ -22,8 +22,8 @@ #ifndef KPIM_KMAILCOMPLETION_H #define KPIM_KMAILCOMPLETION_H -#include <qmap.h> -#include <qstringlist.h> +#include <tqmap.h> +#include <tqstringlist.h> #include "kcompletion.h" @@ -51,7 +51,7 @@ class KMailCompletion : public KCompletion * * @returns email address */ - QString makeCompletion( const QString &string ); + TQString makeCompletion( const TQString &string ); /** * Specify keywords for email. @@ -62,15 +62,15 @@ class KMailCompletion : public KCompletion * \li contains <email> * or if they have also been added with this function. */ - void addItemWithKeys( const QString& email, int weight, const QStringList * keyWords); + void addItemWithKeys( const TQString& email, int weight, const TQStringList * keyWords); /** * Uses an internal map to replace all keywords in pMatches whith corrsesponding email addresses. */ - virtual void postProcessMatches( QStringList * pMatches )const; + virtual void postProcessMatches( TQStringList * pMatches )const; private: - QMap< QString, QStringList > m_keyMap; + TQMap< TQString, TQStringList > m_keyMap; }; } |