summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGTextPositioningElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGTextPositioningElement.cpp')
-rw-r--r--WebCore/svg/SVGTextPositioningElement.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/WebCore/svg/SVGTextPositioningElement.cpp b/WebCore/svg/SVGTextPositioningElement.cpp
index 2bfc33e..346bd1e 100644
--- a/WebCore/svg/SVGTextPositioningElement.cpp
+++ b/WebCore/svg/SVGTextPositioningElement.cpp
@@ -33,11 +33,11 @@ namespace WebCore {
SVGTextPositioningElement::SVGTextPositioningElement(const QualifiedName& tagName, Document* doc)
: SVGTextContentElement(tagName, doc)
- , m_x(SVGLengthList::create(SVGNames::xAttr))
- , m_y(SVGLengthList::create(SVGNames::yAttr))
- , m_dx(SVGLengthList::create(SVGNames::dxAttr))
- , m_dy(SVGLengthList::create(SVGNames::dyAttr))
- , m_rotate(SVGNumberList::create(SVGNames::rotateAttr))
+ , m_x(new SVGLengthList(SVGNames::xAttr))
+ , m_y(new SVGLengthList(SVGNames::yAttr))
+ , m_dx(new SVGLengthList(SVGNames::dxAttr))
+ , m_dy(new SVGLengthList(SVGNames::dyAttr))
+ , m_rotate(new SVGNumberList(SVGNames::rotateAttr))
{
}