From 9cc13dcbb01a96c9e60a07ca63c61d24b374f50d Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 16 Dec 2011 09:59:50 -0600 Subject: Revert "Rename a number of old tq methods that are no longer tq specific" This reverts commit 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12. --- akregator/src/feedlist.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'akregator/src/feedlist.cpp') diff --git a/akregator/src/feedlist.cpp b/akregator/src/feedlist.cpp index e05aded8a..1daf1aa63 100644 --- a/akregator/src/feedlist.cpp +++ b/akregator/src/feedlist.cpp @@ -222,10 +222,10 @@ void FeedList::append(FeedList* list, Folder* parent, TreeNode* after) if ( !flatList()->contains(parent) ) parent = rootNode(); - TQValueList children = list->rootNode()->children(); + TQValueList tqchildren = list->rootNode()->tqchildren(); - TQValueList::ConstIterator end( children.end() ); - for (TQValueList::ConstIterator it = children.begin(); it != end; ++it) + TQValueList::ConstIterator end( tqchildren.end() ); + for (TQValueList::ConstIterator it = tqchildren.begin(); it != end; ++it) { list->rootNode()->removeChild(*it); parent->insertChild(*it, after); @@ -254,11 +254,11 @@ TQDomDocument FeedList::toXML() const TQDomElement body = doc.createElement( "body" ); root.appendChild( body ); - TQValueList children = rootNode()->children(); + TQValueList tqchildren = rootNode()->tqchildren(); - TQValueList::ConstIterator end( children.end() ); + TQValueList::ConstIterator end( tqchildren.end() ); - for (TQValueList::ConstIterator it = children.begin(); it != end; ++it) + for (TQValueList::ConstIterator it = tqchildren.begin(); it != end; ++it) body.appendChild( (*it)->toOPML(body, doc) ); return doc; -- cgit v1.2.1