summaryrefslogtreecommitdiffstats
path: root/WebCore/svg/SVGGElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/svg/SVGGElement.cpp')
-rw-r--r--WebCore/svg/SVGGElement.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/WebCore/svg/SVGGElement.cpp b/WebCore/svg/SVGGElement.cpp
index 0c85a03..8174eac 100644
--- a/WebCore/svg/SVGGElement.cpp
+++ b/WebCore/svg/SVGGElement.cpp
@@ -29,16 +29,14 @@
namespace WebCore {
-SVGGElement::SVGGElement(const QualifiedName& tagName, Document* doc)
- : SVGStyledTransformableElement(tagName, doc)
- , SVGTests()
- , SVGLangSpace()
- , SVGExternalResourcesRequired()
+SVGGElement::SVGGElement(const QualifiedName& tagName, Document* document)
+ : SVGStyledTransformableElement(tagName, document)
{
}
-SVGGElement::~SVGGElement()
+PassRefPtr<SVGGElement> SVGGElement::create(const QualifiedName& tagName, Document* document)
{
+ return adoptRef(new SVGGElement(tagName, document));
}
void SVGGElement::parseMappedAttribute(Attribute* attr)