summaryrefslogtreecommitdiffstats
path: root/kmail/searchjob.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:53:50 +0000
commit7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch)
tree8474f9b444b2756228600050f07a7ff25de532b2 /kmail/searchjob.h
parentf587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff)
downloadtdepim-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.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kmail/searchjob.h b/kmail/searchjob.h
index 5a655c62..d48d96b6 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