From 5ddde30071f639962dd557c453f2ad01f8f0fd00 Mon Sep 17 00:00:00 2001 From: Kristian Monsen Date: Wed, 8 Sep 2010 12:18:00 +0100 Subject: Merge WebKit at r66666 : Initial merge by git. Change-Id: I57dedeb49859adc9c539e760f0e749768c66626f --- WebCore/svg/SVGTRefElement.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'WebCore/svg/SVGTRefElement.cpp') diff --git a/WebCore/svg/SVGTRefElement.cpp b/WebCore/svg/SVGTRefElement.cpp index c140f05..72a037a 100644 --- a/WebCore/svg/SVGTRefElement.cpp +++ b/WebCore/svg/SVGTRefElement.cpp @@ -32,14 +32,14 @@ namespace WebCore { -SVGTRefElement::SVGTRefElement(const QualifiedName& tagName, Document* doc) - : SVGTextPositioningElement(tagName, doc) - , SVGURIReference() +inline SVGTRefElement::SVGTRefElement(const QualifiedName& tagName, Document* document) + : SVGTextPositioningElement(tagName, document) { } -SVGTRefElement::~SVGTRefElement() +PassRefPtr SVGTRefElement::create(const QualifiedName& tagName, Document* document) { + return adoptRef(new SVGTRefElement(tagName, document)); } void SVGTRefElement::updateReferencedText() -- cgit v1.1