| Index: Source/core/html/HTMLOListElement.cpp
|
| diff --git a/Source/core/html/HTMLOListElement.cpp b/Source/core/html/HTMLOListElement.cpp
|
| index 6feab4dcbc59b57c236b90127cc5956b309fc259..8ad5bbbdc05ef7cd62209a48fa87a2d6b24d0906 100644
|
| --- a/Source/core/html/HTMLOListElement.cpp
|
| +++ b/Source/core/html/HTMLOListElement.cpp
|
| @@ -32,7 +32,7 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -HTMLOListElement::HTMLOListElement(const QualifiedName& tagName, Document* document)
|
| +HTMLOListElement::HTMLOListElement(const QualifiedName& tagName, Document& document)
|
| : HTMLElement(tagName, document)
|
| , m_start(0xBADBEEF)
|
| , m_itemCount(0)
|
| @@ -44,12 +44,12 @@ HTMLOListElement::HTMLOListElement(const QualifiedName& tagName, Document* docum
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<HTMLOListElement> HTMLOListElement::create(Document* document)
|
| +PassRefPtr<HTMLOListElement> HTMLOListElement::create(Document& document)
|
| {
|
| return adoptRef(new HTMLOListElement(olTag, document));
|
| }
|
|
|
| -PassRefPtr<HTMLOListElement> HTMLOListElement::create(const QualifiedName& tagName, Document* document)
|
| +PassRefPtr<HTMLOListElement> HTMLOListElement::create(const QualifiedName& tagName, Document& document)
|
| {
|
| return adoptRef(new HTMLOListElement(tagName, document));
|
| }
|
|
|