diff options
Diffstat (limited to 'akregator/src/treenode.h')
-rw-r--r-- | akregator/src/treenode.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/akregator/src/treenode.h b/akregator/src/treenode.h index b50b050a6..305bc5d47 100644 --- a/akregator/src/treenode.h +++ b/akregator/src/treenode.h @@ -100,16 +100,16 @@ public: virtual TreeNode* prevSibling() const; - /** Returns the tqparent node. - @return the tqparent feed group, 0 if there is none */ + /** Returns the parent node. + @return the parent feed group, 0 if there is none */ - virtual Folder* tqparent() const; + virtual Folder* parent() const; - /** Sets tqparent node; Don't call this directly, is done automatically by + /** Sets parent node; Don't call this directly, is done automatically by insertChild-methods in @ref Folder. */ - virtual void setParent(Folder* tqparent); + virtual void setParent(Folder* parent); /** Returns a sequence of the articles this node contains. For feed groups, this returns a concatenated list of all articles in the sub tree. @@ -128,10 +128,10 @@ public: virtual bool isGroup() const = 0; /** exports node and child nodes to OPML (with akregator settings) - @param tqparent the dom element the child node will be attached to + @param parent the dom element the child node will be attached to @param document the opml document */ - virtual TQDomElement toOPML( TQDomElement tqparent, TQDomDocument document ) const = 0; + virtual TQDomElement toOPML( TQDomElement parent, TQDomDocument document ) const = 0; /** @param doNotify notification on changes on/off flag |