diff options
Diffstat (limited to 'kmail/headeritem.h')
-rw-r--r-- | kmail/headeritem.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmail/headeritem.h b/kmail/headeritem.h index c4a9a9309..2142cf71b 100644 --- a/kmail/headeritem.h +++ b/kmail/headeritem.h @@ -63,14 +63,14 @@ public: mImperfectlyThreaded (true), mSubjThreadingList(0) { } ~SortCacheItem() { if(mUnsortedChildren) free(mUnsortedChildren); } - /** The tqparent node of the item in the threading hierarchy. 0 if the item + /** The parent node of the item in the threading hierarchy. 0 if the item * is at top level, which is the default. Can only be set by parents. */ - SortCacheItem *tqparent() const { return mParent; } + SortCacheItem *parent() const { return mParent; } /** * Returs whether the item is so far imperfectly threaded. * If an item is imperfectly threaded (by References or subject, not by * In-Reply-To) it will be reevalutated when a new mail comes in. It could be - * the perfect tqparent. */ + * the perfect parent. */ bool isImperfectlyThreaded() const { return mImperfectlyThreaded; } /** Set whether the item is currently imperfectly threaded (by References @@ -130,7 +130,7 @@ public: void setOffset(int x) { mSortOffset = x; } void updateSortFile( FILE *sortStream, KMFolder *folder, - bool waiting_for_tqparent = false, + bool waiting_for_parent = false, bool update_discovered_count = false); /** Set the list of mails with a certain subject that this item is on. @@ -163,8 +163,8 @@ private: class HeaderItem : public KListViewItem { public: - HeaderItem( TQListView* tqparent, int msgId, const TQString& key = TQString() ); - HeaderItem( TQListViewItem* tqparent, int msgId, const TQString& key = TQString() ); + HeaderItem( TQListView* parent, int msgId, const TQString& key = TQString() ); + HeaderItem( TQListViewItem* parent, int msgId, const TQString& key = TQString() ); ~HeaderItem (); /** Set the message id of this item, which is the offset/index in the folder |