mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 17:53:08 -07:00
- Qt 4.4 fix
This commit is contained in:
parent
9a68e0cc25
commit
4d1ef40f6e
1 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ void RssFolder::refresh() {
|
|||
QList<RssItem*> RssFolder::getNewsList() const {
|
||||
QList<RssItem*> news;
|
||||
foreach(RssFile *child, this->values()) {
|
||||
news.append(child->getNewsList());
|
||||
news << child->getNewsList();
|
||||
}
|
||||
return news;
|
||||
}
|
||||
|
@ -128,7 +128,7 @@ QList<RssItem*> RssFolder::getNewsList() const {
|
|||
QList<RssItem*> RssFolder::getUnreadNewsList() const {
|
||||
QList<RssItem*> unread_news;
|
||||
foreach(RssFile *child, this->values()) {
|
||||
unread_news.append(child->getUnreadNewsList());
|
||||
unread_news << child->getUnreadNewsList();
|
||||
}
|
||||
return unread_news;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue