1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 10:46:35 +01:00

Typo s/childs/children

This commit is contained in:
nowrep 2013-11-03 14:22:27 +01:00
parent 3159407c18
commit c07e9cff3c
2 changed files with 9 additions and 9 deletions

View File

@ -43,14 +43,14 @@ bool AdBlockSearchTree::add(const AdBlockRule* rule)
for (int i = 0; i < len; ++i) {
const QChar &c = filter.at(i);
if (!node->childs.contains(c)) {
if (!node->children.contains(c)) {
Node* n = new Node;
n->c = c;
node->childs[c] = n;
node->children[c] = n;
}
node = node->childs[c];
node = node->children[c];
}
node->rule = rule;
@ -86,11 +86,11 @@ const AdBlockRule* AdBlockSearchTree::prefixSearch(const QNetworkRequest &reques
QChar c = string.at(0);
if (!m_root->childs.contains(c)) {
if (!m_root->children.contains(c)) {
return 0;
}
Node* node = m_root->childs[c];
Node* node = m_root->children[c];
for (int i = 1; i < len; ++i) {
const QChar &c = string.at(i);
@ -99,11 +99,11 @@ const AdBlockRule* AdBlockSearchTree::prefixSearch(const QNetworkRequest &reques
return node->rule;
}
if (!node->childs.contains(c)) {
if (!node->children.contains(c)) {
return 0;
}
node = node->childs[c];
node = node->children[c];
}
if (node->rule && node->rule->networkMatch(request, domain, urlString)) {
@ -119,7 +119,7 @@ void AdBlockSearchTree::deleteNode(AdBlockSearchTree::Node* node)
return;
}
QHashIterator<QChar, Node*> i(node->childs);
QHashIterator<QChar, Node*> i(node->children);
while (i.hasNext()) {
i.next();
deleteNode(i.value());

View File

@ -40,7 +40,7 @@ private:
struct Node {
QChar c;
const AdBlockRule* rule;
QHash<QChar, Node*> childs;
QHash<QChar, Node*> children;
Node() : c(0) , rule(0) { }
};