diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-04-22 14:22:28 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-04-22 14:22:28 +0200 |
commit | f0f8b35e3725b52fba017551837fefe98ebfe63f (patch) | |
tree | 82c3182bda9fed9fff7410340792f3b7eca0d4bf /src/webengine | |
parent | Updated documentation (diff) | |
download | smolbote-f0f8b35e3725b52fba017551837fefe98ebfe63f.tar.xz |
clazy fixes
Diffstat (limited to 'src/webengine')
-rw-r--r-- | src/webengine/urlinterceptor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/webengine/urlinterceptor.cpp b/src/webengine/urlinterceptor.cpp index 2a8f816..8643f2c 100644 --- a/src/webengine/urlinterceptor.cpp +++ b/src/webengine/urlinterceptor.cpp @@ -32,7 +32,7 @@ void UrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo &info) qDebug("%s", qUtf8Printable(info.requestUrl().toString())); #endif - for(BlockerSubscription *s : m_manager->subscriptions()) { + for(auto s : m_manager->subscriptions()) { BlockerSubscription::MatchResult r = s->match(info); if(r.match) { info.block(r.block); |