summaryrefslogtreecommitdiffstats
path: root/akregator/src/feedlist.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/feedlist.h')
-rw-r--r--akregator/src/feedlist.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/feedlist.h b/akregator/src/feedlist.h
index 5562e8c4..7a44a12b 100644
--- a/akregator/src/feedlist.h
+++ b/akregator/src/feedlist.h
@@ -46,7 +46,7 @@ class FeedList : public NodeList
Q_OBJECT
public:
- FeedList(QObject *parent = 0, const char *name = 0);
+ FeedList(TQObject *parent = 0, const char *name = 0);
/** Destructor. Contained nodes are deleted! */
~FeedList();
@@ -59,15 +59,15 @@ public:
@param doc the OPML document to parse
@return whether parsing was successful or not (TODO: make errors more detailed)
*/
- virtual bool readFromXML(const QDomDocument& doc);
+ virtual bool readFromXML(const TQDomDocument& doc);
/** exports the feed list as OPML. The root node ("All Feeds") is ignored! */
- virtual QDomDocument toXML() const;
+ virtual TQDomDocument toXML() const;
/** returns a feed object for a given feed URL. If the feed list does not contain a feed with @c url, NULL is returned. If it contains the same feed multiple times, any of the Feed objects is returned. */
- Feed* findByURL(const QString& feedURL) const;
+ Feed* findByURL(const TQString& feedURL) const;
- Article findArticle(const QString& feedURL, const QString& guid) const;
+ Article findArticle(const TQString& feedURL, const TQString& guid) const;
signals:
@@ -81,7 +81,7 @@ protected:
public: // compat with KDE-3.x assertions, remove for KDE 4
// private:
- void parseChildNodes(QDomNode &node, Folder* parent);
+ void parseChildNodes(TQDomNode &node, Folder* parent);
// never call these
FeedList(const FeedList&) : NodeList() {}