Browse Source

- Fix compilation warning

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
adda3a2d34
  1. 2
      src/rss.h

2
src/rss.h

@ -537,7 +537,7 @@ class RssStream : public QObject{ @@ -537,7 +537,7 @@ class RssStream : public QObject{
QDomDocument doc("Rss Seed");
QFile fileRss(filePath);
if(!fileRss.open(QIODevice::ReadOnly | QIODevice::Text)) {
qDebug("openRss error : open failed, no file or locked, "+filePath.toUtf8());
qDebug("openRss error : open failed, no file or locked, %s", (const char*)filePath.toUtf8());
if(QFile::exists(filePath)) {
fileRss.remove();
}

Loading…
Cancel
Save