Browse Source

Code clean up

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
e402674092
  1. 7
      src/rss/rssfolder.cpp

7
src/rss/rssfolder.cpp

@ -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…
Cancel
Save