Several RSS fixes:

- Fix possible redownload of torrents marked as read (Closes #927495)
- Properly remove RSS feed settings/history upon feed removal
- Fix possible crash in RSS Downloader dialog in debug mode
This commit is contained in:
Christophe Dumez 2012-02-19 20:36:01 +02:00
parent d53ca1d096
commit b78d6ba243
7 changed files with 19 additions and 10 deletions

View file

@ -184,6 +184,13 @@ void RssFolder::removeAllSettings() {
}
}
void RssFolder::saveItemsToDisk()
{
foreach(const RssFilePtr& child, m_children.values()) {
child->saveItemsToDisk();
}
}
QString RssFolder::id() const {
return m_name;
}