Forgot to use the new safeRemove() function at some places

This commit is contained in:
Christophe Dumez
2010-07-25 15:26:27 +00:00
parent 159be479cc
commit ff08abe177
4 changed files with 13 additions and 13 deletions

View File

@@ -416,9 +416,9 @@ RssStream::~RssStream(){
removeAllItems();
qDebug("All items were removed");
if(QFile::exists(filePath))
QFile::remove(filePath);
misc::safeRemove(filePath);
if(QFile::exists(iconPath) && !iconPath.startsWith(":/"))
QFile::remove(iconPath);
misc::safeRemove(iconPath);
}
RssFile::FileType RssStream::getType() const {