Browse Source

Make sure path cannot be null

adaptive-webui-19844
Christophe Dumez 15 years ago
parent
commit
17e39f56dd
  1. 2
      src/rss.h

2
src/rss.h

@ -108,7 +108,7 @@ public: @@ -108,7 +108,7 @@ public:
virtual QList<RssItem*> getNewsList() const = 0;
virtual QList<RssItem*> getUnreadNewsList() const = 0;
QStringList getPath() const {
QStringList path;
QStringList path = "";
if(getParent()) {
path = ((RssFile*)getParent())->getPath();
path.append(getID());

Loading…
Cancel
Save