Browse Source

Merge pull request #423 from Gelmir/rss_rulelist

Changing regexp/wildcard mode should update article list matches
adaptive-webui-19844
Christophe Dumez 12 years ago
parent
commit
1f25e6d0fe
  1. 6
      src/rss/automatedrssdownloader.cpp

6
src/rss/automatedrssdownloader.cpp

@ -86,6 +86,12 @@ AutomatedRssDownloader::AutomatedRssDownloader(const QWeakPointer<RssManager>& m @@ -86,6 +86,12 @@ AutomatedRssDownloader::AutomatedRssDownloader(const QWeakPointer<RssManager>& m
Q_ASSERT(ok);
ok = connect(ui->lineNotContains, SIGNAL(textEdited(QString)), SLOT(updateMustNotLineValidity()));
Q_ASSERT(ok);
ok = connect(ui->checkRegex, SIGNAL(stateChanged(int)), SLOT(updateMatchingArticles()));
Q_ASSERT(ok);
ok = connect(ui->checkRegex, SIGNAL(stateChanged(int)), SLOT(updateMustLineValidity()));
Q_ASSERT(ok);
ok = connect(ui->checkRegex, SIGNAL(stateChanged(int)), SLOT(updateMustNotLineValidity()));
Q_ASSERT(ok);
updateRuleDefinitionBox();
updateFeedList();
}

Loading…
Cancel
Save