summaryrefslogtreecommitdiffstats
path: root/akregator/src/folder.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/folder.h')
-rw-r--r--akregator/src/folder.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/folder.h b/akregator/src/folder.h
index 5c437d31..ca12c164 100644
--- a/akregator/src/folder.h
+++ b/akregator/src/folder.h
@@ -49,12 +49,12 @@ namespace Akregator
Child nodes are not inserted or parsed.
@param e the element representing the feed group
@return a freshly created feed group */
- static Folder* fromOPML(QDomElement e);
+ static Folder* fromOPML(TQDomElement e);
/** Creates a new folder with a given title
@param title The title of the feed group
*/
- Folder(const QString& title = QString::null);
+ Folder(const TQString& title = TQString::null);
virtual ~Folder();
@@ -62,10 +62,10 @@ namespace Akregator
/** returns recursively concatenated articles of children
@return an article sequence containing articles of children */
- virtual QValueList<Article> articles(const QString& tag=QString::null);
+ virtual TQValueList<Article> articles(const TQString& tag=TQString::null);
/** returns a list of all tags occurring in the subtree of this folder */
- virtual QStringList tags() const;
+ virtual TQStringList tags() const;
/** returns the number of unread articles in all children
@return number of unread articles */
@@ -83,12 +83,12 @@ namespace Akregator
@param parent The parent element
@param document The DOM document
@return The newly created element representing this feed group */
- virtual QDomElement toOPML( QDomElement parent, QDomDocument document ) const;
+ virtual TQDomElement toOPML( TQDomElement parent, TQDomDocument document ) const;
/** returns the (direct) children of this node.
@return a list of pointers to the child nodes
*/
- virtual QValueList<TreeNode*> children() const;
+ virtual TQValueList<TreeNode*> children() const;
/** inserts @c node as child after child node @c after.
if @c after is not a child of this group, @c node will be inserted as first child