mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
RSS: Correctly mark virtual functions
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user