| Index: Source/core/accessibility/AXImageMapLink.cpp
|
| diff --git a/Source/core/accessibility/AXImageMapLink.cpp b/Source/core/accessibility/AXImageMapLink.cpp
|
| index e4977049bcbd26ca9f5584b2754cc44f9ddcd746..02ce023193c714f81f7e1819fd2913e057e3a543 100644
|
| --- a/Source/core/accessibility/AXImageMapLink.cpp
|
| +++ b/Source/core/accessibility/AXImageMapLink.cpp
|
| @@ -37,8 +37,8 @@ namespace WebCore {
|
| using namespace HTMLNames;
|
|
|
| AXImageMapLink::AXImageMapLink()
|
| - : m_areaElement(0)
|
| - , m_mapElement(0)
|
| + : m_areaElement(nullptr)
|
| + , m_mapElement(nullptr)
|
| {
|
| }
|
|
|
| @@ -49,8 +49,8 @@ AXImageMapLink::~AXImageMapLink()
|
| void AXImageMapLink::detachFromParent()
|
| {
|
| AXMockObject::detachFromParent();
|
| - m_areaElement = 0;
|
| - m_mapElement = 0;
|
| + m_areaElement = nullptr;
|
| + m_mapElement = nullptr;
|
| }
|
|
|
| PassRefPtr<AXImageMapLink> AXImageMapLink::create()
|
|
|