summaryrefslogtreecommitdiffstats
path: root/akregator/src/feed.h
diff options
context:
space:
mode:
Diffstat (limited to 'akregator/src/feed.h')
-rw-r--r--akregator/src/feed.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/akregator/src/feed.h b/akregator/src/feed.h
index e3e63da0..102415fd 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<Article> articles(const QString& tag=QString::null);
+ virtual TQValueList<Article> 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: