summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGTransformDistance.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGTransformDistance.h')
-rw-r--r--WebCore/svg/SVGTransformDistance.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/svg/SVGTransformDistance.h b/WebCore/svg/SVGTransformDistance.h
index b3663ad..470e2eb 100644
--- a/WebCore/svg/SVGTransformDistance.h
+++ b/WebCore/svg/SVGTransformDistance.h
@@ -27,7 +27,7 @@
namespace WebCore {
- class AffineTransform;
+ class TransformationMatrix;
class SVGTransformDistance {
public:
@@ -44,13 +44,13 @@ namespace WebCore {
float distance() const;
private:
- SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const AffineTransform&);
+ SVGTransformDistance(SVGTransform::SVGTransformType, float angle, float cx, float cy, const TransformationMatrix&);
SVGTransform::SVGTransformType m_type;
float m_angle;
float m_cx;
float m_cy;
- AffineTransform m_transform; // for storing scale, translation or matrix transforms
+ TransformationMatrix m_transform; // for storing scale, translation or matrix transforms
};
}