summaryrefslogtreecommitdiffstats
path: root/akregator/src/tagnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/tagnode.h')
-rw-r--r--akregator/src/tagnode.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/akregator/src/tagnode.h b/akregator/src/tagnode.h
index 51ee4879..df66c4b5 100644
--- a/akregator/src/tagnode.h
+++ b/akregator/src/tagnode.h
@@ -61,7 +61,7 @@ public:
virtual Tag tag() const;
- virtual QString icon() const;
+ virtual TQString icon() const;
/** The unread count, returns the number of new/unread articles in the node (for groups: the accumulated count of the subtree)
@return number of new/unread articles */
@@ -79,11 +79,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);
+ virtual TQValueList<Article> articles(const TQString& tag=TQString::null);
/** returns a list of all tags occurring in this node (sub tree for folders) */
- virtual QStringList tags() const;
+ virtual TQStringList tags() const;
/** 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 */
@@ -92,14 +92,14 @@ public:
/** reimplemented to return an invalid element */
- virtual QDomElement toOPML( QDomElement parent, QDomDocument document ) const;
+ virtual TQDomElement toOPML( TQDomElement parent, TQDomDocument document ) const;
/** returns the next node in the tree.
Calling next() unless it returns 0 iterates through the tree in pre-order
*/
virtual TreeNode* next();
- virtual void setTitle(const QString& title);
+ virtual void setTitle(const TQString& title);
/** called by @c TagNodeList when the tag of this node was changed */
virtual void tagChanged();
@@ -116,9 +116,9 @@ public slots:
/** does nothing for TagNode */
virtual void slotAddToFetchQueue(FetchQueue* queue, bool intervalFetchOnly=false);
- virtual void slotArticlesAdded(TreeNode* node, const QValueList<Article>& list);
- virtual void slotArticlesUpdated(TreeNode* node, const QValueList<Article>& list);
- virtual void slotArticlesRemoved(TreeNode* node, const QValueList<Article>& list);
+ virtual void slotArticlesAdded(TreeNode* node, const TQValueList<Article>& list);
+ virtual void slotArticlesUpdated(TreeNode* node, const TQValueList<Article>& list);
+ virtual void slotArticlesRemoved(TreeNode* node, const TQValueList<Article>& list);
virtual void slotObservedDestroyed(TreeNode* node);
protected: