diff options
Diffstat (limited to 'kmail/kmfolderimap.h')
-rw-r--r-- | kmail/kmfolderimap.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kmail/kmfolderimap.h b/kmail/kmfolderimap.h index 76a3db98d..2f85685b6 100644 --- a/kmail/kmfolderimap.h +++ b/kmail/kmfolderimap.h @@ -63,14 +63,14 @@ class KMMsgMetaData public: KMMsgMetaData(KMMsgStatus aStatus) :mStatus(aStatus), mSerNum(0) {} - KMMsgMetaData(KMMsgStatus aStatus, Q_UINT32 aSerNum) + KMMsgMetaData(KMMsgStatus aStatus, TQ_UINT32 aSerNum) :mStatus(aStatus), mSerNum(aSerNum) {} ~KMMsgMetaData() {}; KMMsgStatus status() const { return mStatus; } - Q_UINT32 serNum() const { return mSerNum; } + TQ_UINT32 serNum() const { return mSerNum; } private: KMMsgStatus mStatus; - Q_UINT32 mSerNum; + TQ_UINT32 mSerNum; }; @@ -167,7 +167,7 @@ public: * Create a new subfolder * You may specify the root imap path or this folder will be used * If you set askUser to false and the server can only handle folders - * that contain messages _or_ folders the new folder is set to "contains messages" + * that contain messages _or_ folders the new folder is set to "tqcontains messages" * by default */ void createFolder(const TQString &name, @@ -183,12 +183,12 @@ public: * Change the status of the message indicated by @p index * Overloaded function for the following one */ - virtual void setStatus(int idx, KMMsgStatus status, bool toggle); + virtual void seStatus(int idx, KMMsgStatus status, bool toggle); /** * Change the status of several messages indicated by @p ids */ - virtual void setStatus(TQValueList<int>& _ids, KMMsgStatus status, bool toggle); + virtual void seStatus(TQValueList<int>& _ids, KMMsgStatus status, bool toggle); /** generates sets of uids */ static TQStringList makeSets( TQValueList<ulong>&, bool sort = true); @@ -314,7 +314,7 @@ public: * is signaled with searchDone() */ virtual void search( const KMSearchPattern* ); - virtual void search( const KMSearchPattern*, Q_UINT32 serNum ); + virtual void search( const KMSearchPattern*, TQ_UINT32 serNum ); /** Returns true if this folder can be moved */ virtual bool isMoveable() const; @@ -395,14 +395,14 @@ public slots: /** * Called from the SearchJob when the folder is done or messages where found */ - void slotSearchDone( TQValueList<Q_UINT32> serNums, + void slotSearchDone( TQValueList<TQ_UINT32> serNums, const KMSearchPattern* pattern, bool complete ); /** * Called from the SearchJob when the message was searched */ - void slotSearchDone( Q_UINT32 serNum, const KMSearchPattern* pattern, bool matches ); + void slotSearchDone( TQ_UINT32 serNum, const KMSearchPattern* pattern, bool matches ); /** * Connected to ListJob::receivedFolders |