diff options
Diffstat (limited to 'WebCore/svg/SVGCursorElement.cpp')
-rw-r--r-- | WebCore/svg/SVGCursorElement.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/WebCore/svg/SVGCursorElement.cpp b/WebCore/svg/SVGCursorElement.cpp index 8ff9735..12e9e5d 100644 --- a/WebCore/svg/SVGCursorElement.cpp +++ b/WebCore/svg/SVGCursorElement.cpp @@ -27,8 +27,9 @@ #include "Attr.h" #include "Document.h" -#include "SVGNames.h" +#include "MappedAttribute.h" #include "SVGLength.h" +#include "SVGNames.h" namespace WebCore { @@ -91,7 +92,7 @@ void SVGCursorElement::svgAttributeChanged(const QualifiedName& attrName) HashSet<SVGElement*>::const_iterator end = m_clients.end(); for (; it != end; ++it) - (*it)->setChanged(); + (*it)->setNeedsStyleRecalc(); } } |