diff options
Diffstat (limited to 'kmail/index.h')
-rw-r--r-- | kmail/index.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kmail/index.h b/kmail/index.h index 91c69f2d7..5e7f16dce 100644 --- a/kmail/index.h +++ b/kmail/index.h @@ -74,7 +74,7 @@ class KMMsgIndex : public TQObject { /** * Just return all the uids where the pattern exists */ - std::vector<Q_UINT32> simpleSearch( TQString, bool* ) const; + std::vector<TQ_UINT32> simpleSearch( TQString, bool* ) const; /** * Returns whether the folder is indexable. Only local and dimap @@ -133,14 +133,14 @@ class KMMsgIndex : public TQObject { void continueCreation(); - void slotAddMessage( Q_UINT32 message ); - void slotRemoveMessage( Q_UINT32 message ); + void slotAddMessage( TQ_UINT32 message ); + void slotRemoveMessage( TQ_UINT32 message ); private: static TQString defaultPath(); bool canHandleQuery( const KMSearchPattern* ) const; - int addMessage( Q_UINT32 ); - void removeMessage( Q_UINT32 ); + int addMessage( TQ_UINT32 ); + void removeMessage( TQ_UINT32 ); void scheduleAction(); bool creating() const; @@ -151,16 +151,16 @@ class KMMsgIndex : public TQObject { * DO NOT USE THIS CLASS * * It is conceptually a private class. - * Just needs to be public because of moc limitations + * Just needs to be public because of tqmoc limitations */ class Search; private: - std::vector<Q_UINT32> mPendingMsgs; + std::vector<TQ_UINT32> mPendingMsgs; std::vector<KMFolder*> mPendingFolders; - std::vector<Q_UINT32> mAddedMsgs; - std::vector<Q_UINT32> mRemovedMsgs; - std::vector<Q_UINT32> mExisting; + std::vector<TQ_UINT32> mAddedMsgs; + std::vector<TQ_UINT32> mRemovedMsgs; + std::vector<TQ_UINT32> mExisting; enum e_state { s_idle, // doing nothing, index waiting @@ -199,7 +199,7 @@ class KMMsgIndex::Search : public TQObject { ~Search(); KMSearch* search() const { return mSearch; } signals: - void found( Q_UINT32 ); + void found( TQ_UINT32 ); void finished( bool ); private slots: void act(); @@ -211,7 +211,7 @@ class KMMsgIndex::Search : public TQObject { * handled by the index */ KMSearchPattern* mResidual; - std::vector<Q_UINT32> mValues; + std::vector<TQ_UINT32> mValues; enum { s_none = 0, s_starting, s_emitting, s_emitstopped, s_done } mState; }; |