diff options
Diffstat (limited to 'src/item.h')
-rw-r--r-- | src/item.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -106,17 +106,17 @@ public: void setChanged(); /** * Sets this item as a child of the given item. Calls reparented with the - * old and the new tqparent. + * old and the new parent. */ void setParentItem( Item *parentItem ); /** - * The tqparent item for this item, or NULL if none + * The parent item for this item, or NULL if none */ Item *parentItem() const { return p_parentItem; } ItemDocument *itemDocument() const { return p_itemDocument; } /** * Returns the number of items away from the top item this is - * (tqparent-wise). Returns 0 if has no tqparent. + * (parent-wise). Returns 0 if has no parent. */ int level() const; /** @@ -260,7 +260,7 @@ protected slots: protected: /** * Reinherit this function if you want to do anything with tqchildren. Called - * after the tqparent is changed, with the old tqparent and the new tqparent. + * after the parent is changed, with the old parent and the new parent. */ virtual void reparented( Item */*oldParent*/, Item */*newParent*/ ) {}; /** @@ -289,7 +289,7 @@ protected: TQString m_id; TQString m_name, m_desc; // Name and description TQString m_type; - GuardedItem p_parentItem; // If attached to a tqparent item + GuardedItem p_parentItem; // If attached to a parent item ItemList m_tqchildren; TQGuardedPtr<ItemDocument> p_itemDocument; TQPointArray m_itemPoints; // The unorientated and unsized item points |