Index: Source/core/svg/SVGElementInstance.h |
diff --git a/Source/core/svg/SVGElementInstance.h b/Source/core/svg/SVGElementInstance.h |
index 8ae0bfa6074f5e1dec302fab7ba6d15a57ccadf1..5161d1575c994b0adfe700de33661838f97f34f4 100644 |
--- a/Source/core/svg/SVGElementInstance.h |
+++ b/Source/core/svg/SVGElementInstance.h |
@@ -164,7 +164,7 @@ private: |
template<class GenericNode, class GenericNodeContainer> |
friend void Private::addChildNodesToDeletionQueue(GenericNode*& head, GenericNode*& tail, GenericNodeContainer&); |
- bool hasChildNodes() const { return m_firstChild; } |
+ bool hasChildren() const { return m_firstChild; } |
void setFirstChild(SVGElementInstance* child) { m_firstChild = child; } |
void setLastChild(SVGElementInstance* child) { m_lastChild = child; } |