aboutsummaryrefslogtreecommitdiff
path: root/lib/web/urlfilter/adblockrule.cpp
diff options
context:
space:
mode:
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: