summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGTextElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGTextElement.cpp')
-rw-r--r--WebCore/svg/SVGTextElement.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/WebCore/svg/SVGTextElement.cpp b/WebCore/svg/SVGTextElement.cpp
index 1ace1a9..b2ee798 100644
--- a/WebCore/svg/SVGTextElement.cpp
+++ b/WebCore/svg/SVGTextElement.cpp
@@ -25,7 +25,7 @@
#if ENABLE(SVG)
#include "SVGTextElement.h"
-#include "AffineTransform.h"
+#include "TransformationMatrix.h"
#include "FloatRect.h"
#include "RenderSVGText.h"
#include "SVGLengthList.h"
@@ -80,29 +80,29 @@ FloatRect SVGTextElement::getBBox() const
return SVGTransformable::getBBox(this);
}
-AffineTransform SVGTextElement::getScreenCTM() const
+TransformationMatrix SVGTextElement::getScreenCTM() const
{
return SVGTransformable::getScreenCTM(this);
}
-AffineTransform SVGTextElement::getCTM() const
+TransformationMatrix SVGTextElement::getCTM() const
{
return SVGTransformable::getCTM(this);
}
-AffineTransform SVGTextElement::animatedLocalTransform() const
+TransformationMatrix SVGTextElement::animatedLocalTransform() const
{
return m_supplementalTransform ? transform()->concatenate().matrix() * *m_supplementalTransform : transform()->concatenate().matrix();
}
-AffineTransform* SVGTextElement::supplementalTransform()
+TransformationMatrix* SVGTextElement::supplementalTransform()
{
if (!m_supplementalTransform)
- m_supplementalTransform.set(new AffineTransform());
+ m_supplementalTransform.set(new TransformationMatrix());
return m_supplementalTransform.get();
}
-RenderObject* SVGTextElement::createRenderer(RenderArena* arena, RenderStyle* style)
+RenderObject* SVGTextElement::createRenderer(RenderArena* arena, RenderStyle*)
{
return new (arena) RenderSVGText(this);
}