diff options
Diffstat (limited to 'akregator/src/feedstorage.h')
-rw-r--r-- | akregator/src/feedstorage.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/akregator/src/feedstorage.h b/akregator/src/feedstorage.h index 5b2f2a50f..bbf362078 100644 --- a/akregator/src/feedstorage.h +++ b/akregator/src/feedstorage.h @@ -80,7 +80,7 @@ class AKREGATOR_EXPORT FeedStorage : public QObject /** returns the guid of the articles in a given category */ virtual TQStringList articles(const Category& cat) = 0; - /** Appends all articles from another storage. If there is already an article in this feed with the same guid, it is replaced by the article from the source + /** Appends all articles from another storage. If there is already an article in this feed with the same guid, it is tqreplaced by the article from the source @param source the archive which articles should be appended */ virtual void add(FeedStorage* source) = 0; @@ -92,7 +92,7 @@ class AKREGATOR_EXPORT FeedStorage : public QObject virtual void clear() = 0; - virtual bool contains(const TQString& guid) = 0; + virtual bool tqcontains(const TQString& guid) = 0; virtual void addEntry(const TQString& guid) = 0; virtual void deleteArticle(const TQString& guid) = 0; virtual int comments(const TQString& guid) = 0; @@ -111,7 +111,7 @@ class AKREGATOR_EXPORT FeedStorage : public QObject virtual uint pubDate(const TQString& guid) = 0; virtual void setPubDate(const TQString& guid, uint pubdate) = 0; virtual int status(const TQString& guid) = 0; - virtual void setStatus(const TQString& guid, int status) = 0; + virtual void seStatus(const TQString& guid, int status) = 0; virtual TQString title(const TQString& guid) = 0; virtual void setTitle(const TQString& guid, const TQString& title) = 0; virtual TQString description(const TQString& guid) = 0; |