summaryrefslogtreecommitdiffstats
path: root/kmail/searchjob.h
diff options
context:
space:
mode:
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 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