Index: Source/core/dom/TagCollection.cpp |
diff --git a/Source/core/dom/TagCollection.cpp b/Source/core/dom/TagCollection.cpp |
index 169e2a35f268d23f67b471f3bd7d362f6ba2b40b..275d942f0dda70478d227af6f6fca7772d9158cb 100644 |
--- a/Source/core/dom/TagCollection.cpp |
+++ b/Source/core/dom/TagCollection.cpp |
@@ -40,9 +40,9 @@ TagCollection::TagCollection(ContainerNode* rootNode, CollectionType type, const |
TagCollection::~TagCollection() |
{ |
if (m_namespaceURI == starAtom) |
- ownerNode()->nodeLists()->removeCacheWithAtomicName(this, type(), m_localName); |
+ ownerNode()->nodeLists()->removeCache(this, type(), m_localName); |
else |
- ownerNode()->nodeLists()->removeCacheWithQualifiedName(this, m_namespaceURI, m_localName); |
+ ownerNode()->nodeLists()->removeCache(this, m_namespaceURI, m_localName); |
} |
bool TagCollection::elementMatches(const Element& testNode) const |