diff options
Diffstat (limited to 'WebCore/svg/SVGLineElement.cpp')
-rw-r--r-- | WebCore/svg/SVGLineElement.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/svg/SVGLineElement.cpp b/WebCore/svg/SVGLineElement.cpp index 68b8259..a840858 100644 --- a/WebCore/svg/SVGLineElement.cpp +++ b/WebCore/svg/SVGLineElement.cpp @@ -23,8 +23,8 @@ #if ENABLE(SVG) #include "SVGLineElement.h" +#include "Attribute.h" #include "FloatPoint.h" -#include "MappedAttribute.h" #include "RenderPath.h" #include "SVGLength.h" #include "SVGNames.h" @@ -47,7 +47,7 @@ SVGLineElement::~SVGLineElement() { } -void SVGLineElement::parseMappedAttribute(MappedAttribute* attr) +void SVGLineElement::parseMappedAttribute(Attribute* attr) { if (attr->name() == SVGNames::x1Attr) setX1BaseValue(SVGLength(LengthModeWidth, attr->value())); |