diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:53:50 +0000 |
commit | 7be55ffa061c026e35e2d6a0effe1161ddb0d41f (patch) | |
tree | 8474f9b444b2756228600050f07a7ff25de532b2 /akregator/src/feedlist.h | |
parent | f587f20a6d09f1729dd0a8c1cd8ee0110aec7451 (diff) | |
download | tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.tar.gz tdepim-7be55ffa061c026e35e2d6a0effe1161ddb0d41f.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'akregator/src/feedlist.h')
-rw-r--r-- | akregator/src/feedlist.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/src/feedlist.h b/akregator/src/feedlist.h index 5562e8c4a..7a44a12b3 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() {} |