Fix coding style for various things

This commit is contained in:
thalieht 2018-11-06 17:49:17 +02:00 committed by sledgehammer999
parent c62127e9f1
commit 62e71a15a4
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2
35 changed files with 120 additions and 121 deletions

View file

@ -373,7 +373,7 @@ void AutoDownloader::addJobForArticle(Article *article)
void AutoDownloader::processJob(const QSharedPointer<ProcessingJob> &job)
{
for (AutoDownloadRule &rule: m_rules) {
for (AutoDownloadRule &rule : m_rules) {
if (!rule.isEnabled()) continue;
if (!rule.feedURLs().contains(job->feedURL)) continue;
if (!rule.accepts(job->articleData)) continue;