diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-08-23 00:05:18 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-08-23 00:05:18 +0200 |
commit | a0fe09d63b05d7198ebe013f1d6be9097a0acf65 (patch) | |
tree | 2c7907ef79d4f07b0aa26b206ffd8d0bbf9e5eaa /src/adblock/adblockruletextmatchimpl.cpp | |
parent | Merge commit 'refs/merge-requests/185' of git://gitorious.org/rekonq/mainline... (diff) | |
parent | Add support for domain option in the ad block module (diff) | |
download | rekonq-a0fe09d63b05d7198ebe013f1d6be9097a0acf65.tar.xz |
Merge commit 'refs/merge-requests/186' of git://gitorious.org/rekonq/mainline into m186
Diffstat (limited to 'src/adblock/adblockruletextmatchimpl.cpp')
-rw-r--r-- | src/adblock/adblockruletextmatchimpl.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/adblock/adblockruletextmatchimpl.cpp b/src/adblock/adblockruletextmatchimpl.cpp index 892d78e0..2d534a3a 100644 --- a/src/adblock/adblockruletextmatchimpl.cpp +++ b/src/adblock/adblockruletextmatchimpl.cpp @@ -38,9 +38,10 @@ AdBlockRuleTextMatchImpl::AdBlockRuleTextMatchImpl(const QString &filter) m_textToMatch.remove(QL1C('*')); } -bool AdBlockRuleTextMatchImpl::match(const QString &encodedUrl, const QString &encodedUrlLowerCase) const +bool AdBlockRuleTextMatchImpl::match(const QNetworkRequest &request, const QString &encodedUrl, const QString &encodedUrlLowerCase) const { Q_UNUSED(encodedUrl); + Q_UNUSED(request); // Case sensitive compare is faster, but would be incorrect with encodedUrl since // we do want case insensitive. // What we do is work on a lowercase version of m_textToMatch, and compare to the lowercase |