| Index: Source/core/svg/SVGPointTearOff.cpp
|
| diff --git a/Source/core/svg/SVGPointTearOff.cpp b/Source/core/svg/SVGPointTearOff.cpp
|
| index 5081029c93a6f9331476f84ef3fe59882a6a9953..0f29a8e208729e773ffeea388b7657a005d8ec73 100644
|
| --- a/Source/core/svg/SVGPointTearOff.cpp
|
| +++ b/Source/core/svg/SVGPointTearOff.cpp
|
| @@ -34,7 +34,7 @@
|
|
|
| #include "bindings/v8/ExceptionState.h"
|
| #include "core/dom/ExceptionCode.h"
|
| -#include "core/svg/SVGMatrix.h"
|
| +#include "core/svg/SVGMatrixTearOff.h"
|
|
|
| namespace WebCore {
|
|
|
| @@ -66,9 +66,9 @@ void SVGPointTearOff::setY(float f, ExceptionState& exceptionState)
|
| commitChange();
|
| }
|
|
|
| -PassRefPtr<SVGPointTearOff> SVGPointTearOff::matrixTransform(SVGMatrix matrix)
|
| +PassRefPtr<SVGPointTearOff> SVGPointTearOff::matrixTransform(PassRefPtr<SVGMatrixTearOff> matrix)
|
| {
|
| - FloatPoint point = target()->matrixTransform(matrix);
|
| + FloatPoint point = target()->matrixTransform(matrix->value());
|
| return SVGPointTearOff::create(SVGPoint::create(point), 0, PropertyIsNotAnimVal);
|
| }
|
|
|
|
|