summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLDirectoryElement.cpp
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
committerLorry Tar Creator <lorry-tar-importer@lorry>2016-04-10 09:28:39 +0000
commit32761a6cee1d0dee366b885b7b9c777e67885688 (patch)
treed6bec92bebfb216f4126356e55518842c2f476a1 /Source/WebCore/html/HTMLDirectoryElement.cpp
parenta4e969f4965059196ca948db781e52f7cfebf19e (diff)
downloadWebKitGtk-tarball-32761a6cee1d0dee366b885b7b9c777e67885688.tar.gz
webkitgtk-2.4.11webkitgtk-2.4.11
Diffstat (limited to 'Source/WebCore/html/HTMLDirectoryElement.cpp')
-rw-r--r--Source/WebCore/html/HTMLDirectoryElement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/html/HTMLDirectoryElement.cpp b/Source/WebCore/html/HTMLDirectoryElement.cpp
index bb77d35b2..5c3d15ebc 100644
--- a/Source/WebCore/html/HTMLDirectoryElement.cpp
+++ b/Source/WebCore/html/HTMLDirectoryElement.cpp
@@ -35,9 +35,9 @@ inline HTMLDirectoryElement::HTMLDirectoryElement(const QualifiedName& tagName,
ASSERT(hasTagName(dirTag));
}
-Ref<HTMLDirectoryElement> HTMLDirectoryElement::create(const QualifiedName& tagName, Document& document)
+PassRefPtr<HTMLDirectoryElement> HTMLDirectoryElement::create(const QualifiedName& tagName, Document& document)
{
- return adoptRef(*new HTMLDirectoryElement(tagName, document));
+ return adoptRef(new HTMLDirectoryElement(tagName, document));
}
}