diff options
Diffstat (limited to 'WebCore/wml/WMLPostfieldElement.cpp')
-rw-r--r-- | WebCore/wml/WMLPostfieldElement.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/wml/WMLPostfieldElement.cpp b/WebCore/wml/WMLPostfieldElement.cpp index 5cf26c7..b168dbb 100644 --- a/WebCore/wml/WMLPostfieldElement.cpp +++ b/WebCore/wml/WMLPostfieldElement.cpp @@ -39,6 +39,11 @@ WMLPostfieldElement::WMLPostfieldElement(const QualifiedName& tagName, Document* { } +PassRefPtr<WMLPostfieldElement> WMLPostfieldElement::create(const QualifiedName& tagName, Document* document) +{ + return adoptRef(new WMLPostfieldElement(tagName, document)); +} + void WMLPostfieldElement::insertedIntoDocument() { WMLElement::insertedIntoDocument(); |