mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -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
|
@ -83,7 +83,7 @@ void RssFolder::refresh() {
|
|||
}
|
||||
}
|
||||
|
||||
const RssArticleList RssFolder::articleList() const {
|
||||
RssArticleList RssFolder::articleList() const {
|
||||
RssArticleList news;
|
||||
for (RssFileHash::ConstIterator it = m_children.begin(); it != m_children.end(); it++) {
|
||||
news << it.value()->articleList();
|
||||
|
@ -91,7 +91,7 @@ const RssArticleList RssFolder::articleList() const {
|
|||
return news;
|
||||
}
|
||||
|
||||
const RssArticleList RssFolder::unreadArticleList() const {
|
||||
RssArticleList RssFolder::unreadArticleList() const {
|
||||
RssArticleList unread_news;
|
||||
for (RssFileHash::ConstIterator it = m_children.begin(); it != m_children.end(); it++) {
|
||||
unread_news << it.value()->unreadArticleList();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue