summaryrefslogtreecommitdiff
path: root/src/adblock/adblockruletextmatchimpl.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-09-30 23:20:46 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-09-30 23:20:46 +0200
commitb92ab57a7a65c4c438fe0ff9d35ea6234cd0f1db (patch)
tree07a4d692f131114f52be7262e3121f02a1c0d421 /src/adblock/adblockruletextmatchimpl.cpp
parentrekonq 0.6.50 (diff)
parentImplement a sort of debugging informations for adblock (diff)
downloadrekonq-b92ab57a7a65c4c438fe0ff9d35ea6234cd0f1db.tar.xz
Merge branch 'AdBlockImprovements'
Diffstat (limited to 'src/adblock/adblockruletextmatchimpl.cpp')
-rw-r--r--src/adblock/adblockruletextmatchimpl.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/adblock/adblockruletextmatchimpl.cpp b/src/adblock/adblockruletextmatchimpl.cpp
index 2d534a3a..7296d837 100644
--- a/src/adblock/adblockruletextmatchimpl.cpp
+++ b/src/adblock/adblockruletextmatchimpl.cpp
@@ -72,3 +72,15 @@ bool AdBlockRuleTextMatchImpl::isTextMatchFilter(const QString &filter)
}
return true;
}
+
+
+QString AdBlockRuleTextMatchImpl::ruleString() const
+{
+ return m_textToMatch;
+}
+
+
+QString AdBlockRuleTextMatchImpl::ruleType() const
+{
+ return QL1S("AdBlockRuleTextMatchImpl");
+}