mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Code clean up
This commit is contained in:
parent
783004ae58
commit
e402674092
1 changed files with 3 additions and 4 deletions
|
@ -179,8 +179,7 @@ void RssFolder::processFinishedDownload(QString url, QString path) {
|
||||||
QImage fileIcon;
|
QImage fileIcon;
|
||||||
if(fileIcon.load(path)) {
|
if(fileIcon.load(path)) {
|
||||||
QList<RssFeed*> res = findFeedsWithIcon(url);
|
QList<RssFeed*> res = findFeedsWithIcon(url);
|
||||||
RssFeed* stream;
|
foreach(RssFeed* stream, res){
|
||||||
foreach(stream, res){
|
|
||||||
stream->setIconPath(path);
|
stream->setIconPath(path);
|
||||||
if(!stream->isLoading())
|
if(!stream->isLoading())
|
||||||
RssManager::instance()->forwardFeedIconChanged(stream->getUrl(), stream->getIconPath());
|
RssManager::instance()->forwardFeedIconChanged(stream->getUrl(), stream->getIconPath());
|
||||||
|
@ -190,7 +189,7 @@ void RssFolder::processFinishedDownload(QString url, QString path) {
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
RssFeed *stream = (RssFeed*)this->value(url, 0);
|
RssFeed *stream = static_cast<RssFeed*>(this->value(url, 0));
|
||||||
if(!stream){
|
if(!stream){
|
||||||
qDebug("This rss stream was deleted in the meantime, nothing to update");
|
qDebug("This rss stream was deleted in the meantime, nothing to update");
|
||||||
return;
|
return;
|
||||||
|
@ -213,7 +212,7 @@ void RssFolder::handleDownloadFailure(QString url, QString reason) {
|
||||||
qDebug("Could not download icon at %s, reason: %s", (const char*)url.toLocal8Bit(), (const char*)reason.toLocal8Bit());
|
qDebug("Could not download icon at %s, reason: %s", (const char*)url.toLocal8Bit(), (const char*)reason.toLocal8Bit());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
RssFeed *stream = (RssFeed*)this->value(url, 0);
|
RssFeed *stream = static_cast<RssFeed*>(this->value(url, 0));
|
||||||
if(!stream){
|
if(!stream){
|
||||||
qDebug("This rss stream was deleted in the meantime, nothing to update");
|
qDebug("This rss stream was deleted in the meantime, nothing to update");
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue