Browse Source

- Allow to select multiple rss feeds at once

- Fixed an icon problem when a feed refreshing fails
adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
533aeb3f8b
  1. 1
      src/rss.h
  2. 8
      src/rss.ui

1
src/rss.h

@ -438,6 +438,7 @@ class RssManager : public QObject{ @@ -438,6 +438,7 @@ class RssManager : public QObject{
stream->setLoading(false);
qDebug("Could not download Rss at %s, reason: %s", (const char*)url.toUtf8(), (const char*)reason.toUtf8());
stream->setDownloadFailed();
emit feedInfosChanged(url, stream->getAliasOrUrl(), stream->getNbUnRead());
}
public :

8
src/rss.ui

@ -40,6 +40,9 @@ @@ -40,6 +40,9 @@
<property name="contextMenuPolicy" >
<enum>Qt::CustomContextMenu</enum>
</property>
<property name="selectionMode" >
<enum>QAbstractItemView::ExtendedSelection</enum>
</property>
<property name="columnCount" >
<number>2</number>
</property>
@ -48,6 +51,11 @@ @@ -48,6 +51,11 @@
<string>RSS streams:</string>
</property>
</column>
<column>
<property name="text" >
<string>2</string>
</property>
</column>
</widget>
</item>
<item>

Loading…
Cancel
Save