| Index: Source/core/svg/SVGAnimateTransformElement.cpp
|
| diff --git a/Source/core/svg/SVGAnimateTransformElement.cpp b/Source/core/svg/SVGAnimateTransformElement.cpp
|
| index 6774a387307d08f41cfc80ee7f8fe64d67e32736..70dc573112f1a178e318f8ccf33b33975cbc1ec8 100644
|
| --- a/Source/core/svg/SVGAnimateTransformElement.cpp
|
| +++ b/Source/core/svg/SVGAnimateTransformElement.cpp
|
| @@ -31,7 +31,7 @@ namespace WebCore {
|
|
|
| inline SVGAnimateTransformElement::SVGAnimateTransformElement(Document& document)
|
| : SVGAnimateElement(SVGNames::animateTransformTag, document)
|
| - , m_type(SVGTransform::SVG_TRANSFORM_UNKNOWN)
|
| + , m_type(SVG_TRANSFORM_UNKNOWN)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
| @@ -70,8 +70,8 @@ void SVGAnimateTransformElement::parseAttribute(const QualifiedName& name, const
|
|
|
| if (name == SVGNames::typeAttr) {
|
| m_type = parseTransformType(value);
|
| - if (m_type == SVGTransform::SVG_TRANSFORM_MATRIX)
|
| - m_type = SVGTransform::SVG_TRANSFORM_UNKNOWN;
|
| + if (m_type == SVG_TRANSFORM_MATRIX)
|
| + m_type = SVG_TRANSFORM_UNKNOWN;
|
| return;
|
| }
|
|
|
|
|