summaryrefslogtreecommitdiffstats
path: root/kmail/kmfoldersearch.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-02-16 20:17:18 +0000
commitf4fae92b6768541e2952173c3d4b09040f95bf7e (patch)
treed8c5d93232235cd635f3310b4d95490df181ba2d /kmail/kmfoldersearch.h
parent125c0a08265b75a133644d3b55f47e37c919f45d (diff)
downloadtdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.tar.gz
tdepim-f4fae92b6768541e2952173c3d4b09040f95bf7e.zip
Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 180995dac..ced2af350 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;