mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 01:03:08 -07:00
RSS: Correctly mark virtual functions
This commit is contained in:
parent
b78d6ba243
commit
9acac03f14
5 changed files with 27 additions and 27 deletions
|
@ -198,11 +198,11 @@ uint RssFeed::unreadCount() const{
|
|||
return nbUnread;
|
||||
}
|
||||
|
||||
const RssArticleList RssFeed::articleList() const{
|
||||
RssArticleList RssFeed::articleList() const{
|
||||
return m_articles.values();
|
||||
}
|
||||
|
||||
const RssArticleList RssFeed::unreadArticleList() const {
|
||||
RssArticleList RssFeed::unreadArticleList() const {
|
||||
RssArticleList unread_news;
|
||||
for (RssArticleHash::ConstIterator it = m_articles.begin(); it != m_articles.end(); it++) {
|
||||
if(!it.value()->isRead())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue