summaryrefslogtreecommitdiffstats
path: root/kmail/kmfoldersearch.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmfoldersearch.h')
-rw-r--r--kmail/kmfoldersearch.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/kmail/kmfoldersearch.h b/kmail/kmfoldersearch.h
index 180995da..ced2af35 100644
--- a/kmail/kmfoldersearch.h
+++ b/kmail/kmfoldersearch.h
@@ -37,7 +37,7 @@
numbers of all messages that currently match the search.
**/
-typedef TQValueList<Q_UINT32> SerNumList;
+typedef TQValueList<TQ_UINT32> SerNumList;
class KMSearchPattern;
class KMFolderImap;
class KMFolderSearchJob;
@@ -78,12 +78,12 @@ public slots:
void indexFinished();
signals:
- void found(Q_UINT32 serNum);
+ void found(TQ_UINT32 serNum);
void finished(bool success);
protected slots:
void slotProcessNextBatch();
- void slotSearchFolderResult( KMFolder*, TQValueList<Q_UINT32>,
+ void slotSearchFolderResult( KMFolder*, TQValueList<TQ_UINT32>,
const KMSearchPattern*, bool );
protected:
@@ -140,12 +140,12 @@ protected slots:
// Called when the search is finished
void searchFinished(bool success);
// Look at a new message and if it matches search() add it to the cache
- void examineAddedMessage(KMFolder *folder, Q_UINT32 serNum);
+ void examineAddedMessage(KMFolder *folder, TQ_UINT32 serNum);
// Look at a removed message and remove it from the cache
- void examineRemovedMessage(KMFolder *folder, Q_UINT32 serNum);
+ void examineRemovedMessage(KMFolder *folder, TQ_UINT32 serNum);
// Look at a message whose status has changed
- void examineChangedMessage(KMFolder *folder, Q_UINT32 serNum, int delta);
- // The serial numbers for a folder have been invalidated, deal with it
+ void examineChangedMessage(KMFolder *folder, TQ_UINT32 serNum, int delta);
+ // The serial numbers for a folder have been tqinvalidated, deal with it
void examineInvalidatedFolder(KMFolder *folder);
// A folder has been deleted, deal with it
void examineRemovedFolder(KMFolder *folder);
@@ -155,16 +155,16 @@ protected slots:
public slots:
// Appends the serial number to the cached list of messages that match
// the search for this folder
- void addSerNum(Q_UINT32 serNum);
+ void addSerNum(TQ_UINT32 serNum);
// Removes the serial number from the cached list of messages that match
// the search for this folder
- void removeSerNum(Q_UINT32 serNum);
+ void removeSerNum(TQ_UINT32 serNum);
/** Incrementally update the index if possible else call writeIndex */
virtual int updateIndex();
// Examine the message
- void slotSearchExamineMsgDone( KMFolder*, Q_UINT32 serNum,
+ void slotSearchExamineMsgDone( KMFolder*, TQ_UINT32 serNum,
const KMSearchPattern*, bool );
public:
@@ -183,7 +183,7 @@ public:
virtual TQString indexLocation() const;
virtual int writeIndex( bool createEmptyIndex = false );
DwString getDwString(int idx);
- Q_UINT32 serNum(int idx) { return mSerNums[idx]; }
+ TQ_UINT32 serNum(int idx) { return mSerNums[idx]; }
protected:
virtual FolderJob* doCreateJob(KMMessage *msg, FolderJob::JobType jt,
@@ -202,9 +202,9 @@ protected:
virtual void truncateIndex();
private:
- TQValueVector<Q_UINT32> mSerNums;
+ TQValueVector<TQ_UINT32> mSerNums;
TQValueList<TQGuardedPtr<KMFolder> > mFolders;
- TQValueStack<Q_UINT32> mUnexaminedMessages;
+ TQValueStack<TQ_UINT32> mUnexaminedMessages;
FILE *mIdsStream;
KMSearch *mSearch;
bool mInvalid, mUnlinked;