aboutsummaryrefslogtreecommitdiff
path: root/lib/web/urlfilter/adblockrule.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-07-17 17:51:36 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2018-07-17 17:51:36 +0200
commitd35124d74bde12bceffe98c446470368ef831e53 (patch)
tree910d4053ee7915263dfc3a2f772c9f249cb1de9c /lib/web/urlfilter/adblockrule.cpp
parentUpdate .gitignore (diff)
downloadsmolbote-d35124d74bde12bceffe98c446470368ef831e53.tar.xz
AdBlockTest: loading subscription
Diffstat (limited to 'lib/web/urlfilter/adblockrule.cpp')
-rw-r--r--lib/web/urlfilter/adblockrule.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/web/urlfilter/adblockrule.cpp b/lib/web/urlfilter/adblockrule.cpp
index 505cda5..b20ed8f 100644
--- a/lib/web/urlfilter/adblockrule.cpp
+++ b/lib/web/urlfilter/adblockrule.cpp
@@ -152,7 +152,7 @@ bool AdBlockRule::isEnabled() const
return m_isEnabled;
}
-bool AdBlockRule::matches(QWebEngineUrlRequestInfo::ResourceType type) const
+bool AdBlockRule::matchesType(QWebEngineUrlRequestInfo::ResourceType type) const
{
// no options have been specified -> match all resource types
if(m_resourceTypeOptions.isEmpty())
@@ -166,7 +166,7 @@ bool AdBlockRule::matches(QWebEngineUrlRequestInfo::ResourceType type) const
return m_resourceTypeOptions.value(type);
}
-bool AdBlockRule::shouldBlock(const QUrl &url) const
+bool AdBlockRule::matchesUrl(const QUrl &url) const
{
switch (matchType) {
case RegularExpressionMatch: