summaryrefslogtreecommitdiffstats
path: root/akregator/src/treenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/treenode.h')
-rw-r--r--akregator/src/treenode.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/akregator/src/treenode.h b/akregator/src/treenode.h
index fd25f05c..43ac418d 100644
--- a/akregator/src/treenode.h
+++ b/akregator/src/treenode.h
@@ -26,7 +26,7 @@
#ifndef AKREGATORTREENODE_H
#define AKREGATORTREENODE_H
-#include <qobject.h>
+#include <tqobject.h>
class QDomDocument;
class QDomElement;
@@ -77,14 +77,14 @@ public:
/** Get title of node.
@return the title of the node */
- virtual const QString& title() const;
+ virtual const TQString& title() const;
/** Sets the title of the node.
@c title should not contain entities.
@param title the title string */
- virtual void setTitle(const QString& title);
+ virtual void setTitle(const TQString& title);
/** Get the next sibling.
@@ -115,11 +115,11 @@ public:
If @c tag is not null, only articles tagged with @c tag are returned
@return sequence of articles */
- virtual QValueList<Article> articles(const QString& tag=QString::null) = 0;
+ virtual TQValueList<Article> articles(const TQString& tag=TQString::null) = 0;
/** returns a list of all tags occurring in this node (sub tree for folders) */
- virtual QStringList tags() const = 0;
+ virtual TQStringList tags() const = 0;
/** Helps the rest of the app to decide if node should be handled as group or not. Only use where necessary, use polymorphism where possible.
@return whether the node is a feed group or not */
@@ -130,7 +130,7 @@ public:
@param parent the dom element the child node will be attached to
@param document the opml document */
- virtual QDomElement toOPML( QDomElement parent, QDomDocument document ) const = 0;
+ virtual TQDomElement toOPML( TQDomElement parent, TQDomDocument document ) const = 0;
/**
@param doNotify notification on changes on/off flag
@@ -182,13 +182,13 @@ signals:
@param node the node articles were added to
@param guids the guids of the articles added
*/
- void signalArticlesAdded(TreeNode* node, const QValueList<Article>& guids);
+ void signalArticlesAdded(TreeNode* node, const TQValueList<Article>& guids);
/** emitted when articles were updated */
- void signalArticlesUpdated(TreeNode*, const QValueList<Article>& guids);
+ void signalArticlesUpdated(TreeNode*, const TQValueList<Article>& guids);
/** emitted when articles were removed from this subtree. Note that this has nothing to do with actual article deletion! The article might have moved somewhere else in the tree, e.g. if the user moved the feed */
- void signalArticlesRemoved(TreeNode*, const QValueList<Article>& guids);
+ void signalArticlesRemoved(TreeNode*, const TQValueList<Article>& guids);
protected: