From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- akregator/src/feed.h | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'akregator/src/feed.h') diff --git a/akregator/src/feed.h b/akregator/src/feed.h index e3e63da06..102415fdb 100644 --- a/akregator/src/feed.h +++ b/akregator/src/feed.h @@ -78,13 +78,13 @@ namespace Akregator /** converts strings to ArchiveMode value if parsing fails, it returns ArchiveMode::globalDefault */ - static ArchiveMode stringToArchiveMode(const QString& str); + static ArchiveMode stringToArchiveMode(const TQString& str); /** converts ArchiveMode values to corresponding strings */ - static QString archiveModeToString(ArchiveMode mode); + static TQString archiveModeToString(ArchiveMode mode); /** creates a Feed object from a description in OPML format */ - static Feed* fromOPML(QDomElement e); + static Feed* fromOPML(TQDomElement e); /** default constructor */ Feed(); @@ -94,7 +94,7 @@ namespace Akregator virtual bool accept(TreeNodeVisitor* visitor); /** exports the feed settings to OPML */ - virtual QDomElement toOPML( QDomElement parent, QDomDocument document ) const; + virtual TQDomElement toOPML( TQDomElement parent, TQDomDocument document ) const; /** returns whether this feed uses its own fetch interval or the global setting @@ -153,36 +153,36 @@ namespace Akregator bool loadLinkedWebsite() const; /** returns the favicon */ - const QPixmap& favicon() const; + const TQPixmap& favicon() const; /** sets the favicon (used in the tree view) */ - void setFavicon(const QPixmap& p); + void setFavicon(const TQPixmap& p); /** returns the feed image */ - const QPixmap& image() const; + const TQPixmap& image() const; /** returns the url of the actual feed source (rss/rdf/atom file) */ - const QString& xmlUrl() const; + const TQString& xmlUrl() const; /** sets the url of the actual feed source (rss/rdf/atom file) */ - void setXmlUrl(const QString& s); + void setXmlUrl(const TQString& s); /** returns the URL of the HTML page of this feed */ - const QString& htmlUrl() const; + const TQString& htmlUrl() const; /** sets the URL of the HTML page of this feed */ - void setHtmlUrl(const QString& s); + void setHtmlUrl(const TQString& s); /** returns the description of this feed */ - const QString& description() const; + const TQString& description() const; /** sets the description of this feed */ - void setDescription(const QString& s); + void setDescription(const TQString& s); - virtual QValueList
articles(const QString& tag=QString::null); + virtual TQValueList
articles(const TQString& tag=TQString::null); /** returns the article with the given @c guid, or a null article if it not exists */ - virtual Article findArticle(const QString& guid) const; + virtual Article findArticle(const TQString& guid) const; - virtual QStringList tags() const; + virtual TQStringList tags() const; /** returns whether a fetch error has occurred */ bool fetchErrorOccurred(); @@ -254,7 +254,7 @@ namespace Akregator private slots: void fetchCompleted(Loader *loader, Document doc, Status status); - void slotImageFetched(const QPixmap& image); + void slotImageFetched(const TQPixmap& image); private: -- cgit v1.2.1