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 /kmail/searchjob.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 'kmail/searchjob.h')
-rw-r--r-- | kmail/searchjob.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kmail/searchjob.h b/kmail/searchjob.h index 5a655c62a..d48d96b6d 100644 --- a/kmail/searchjob.h +++ b/kmail/searchjob.h @@ -28,7 +28,7 @@ #ifndef SEARCHJOB_H #define SEARCHJOB_H -#include <qstringlist.h> +#include <tqstringlist.h> #include "folderjob.h" class KMFolderImap; @@ -77,7 +77,7 @@ protected: void searchSingleMessage(); // creates an imap search command - QString searchStringFromPattern( const KMSearchPattern* ); + TQString searchStringFromPattern( const KMSearchPattern* ); // returns true if all uids can be mapped to sernums bool canMapAllUIDs(); @@ -91,7 +91,7 @@ protected slots: void slotSearchFolder(); // processes the server answer - void slotSearchData( KIO::Job* job, const QString& data ); + void slotSearchData( KIO::Job* job, const TQString& data ); // message is downloaded and searched void slotSearchMessageArrived( KMMessage* msg ); @@ -100,14 +100,14 @@ protected slots: void slotSearchResult( KIO::Job *job ); // imap search result from a single message - void slotSearchDataSingleMessage( KIO::Job* job, const QString& data ); + void slotSearchDataSingleMessage( KIO::Job* job, const TQString& data ); // the user cancelled the search progress void slotAbortSearch( KPIM::ProgressItem* item ); signals: // emitted when a list of matching serial numbers was found - void searchDone( QValueList<Q_UINT32>, const KMSearchPattern*, bool complete ); + void searchDone( TQValueList<Q_UINT32>, const KMSearchPattern*, bool complete ); // emitted when a single message (identified by the serial number) was checked void searchDone( Q_UINT32, const KMSearchPattern*, bool matches ); @@ -119,9 +119,9 @@ protected: KMSearchPattern* mLocalSearchPattern; Q_UINT32 mSerNum; // saves the results of the imap search - QStringList mImapSearchHits; + TQStringList mImapSearchHits; // collects the serial numbers from imap and local search - QValueList<Q_UINT32> mSearchSerNums; + TQValueList<Q_UINT32> mSearchSerNums; // the remaining messages that have to be downloaded for local search uint mRemainingMsgs; // progress item for local searches |