diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /libkdepim/kmailcompletion.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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; }; } |