| Index: Source/core/layout/LayoutState.cpp
|
| diff --git a/Source/core/layout/LayoutState.cpp b/Source/core/layout/LayoutState.cpp
|
| index d8aa30b1df0f7bbdd9ece0d1ca8ef0a0df2ac380..5153450f89b747940eb192e674be0151f18830ff 100644
|
| --- a/Source/core/layout/LayoutState.cpp
|
| +++ b/Source/core/layout/LayoutState.cpp
|
| @@ -36,8 +36,8 @@ LayoutState::LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightCha
|
| : m_isPaginated(pageLogicalHeight)
|
| , m_pageLogicalHeightChanged(pageLogicalHeightChanged)
|
| , m_containingBlockLogicalWidthChanged(false)
|
| - , m_flowThread(0)
|
| - , m_next(0)
|
| + , m_flowThread(nullptr)
|
| + , m_next(nullptr)
|
| , m_pageLogicalHeight(pageLogicalHeight)
|
| , m_layoutObject(view)
|
| {
|
| @@ -109,7 +109,7 @@ LayoutState::LayoutState(LayoutObject& root)
|
| : m_isPaginated(false)
|
| , m_pageLogicalHeightChanged(false)
|
| , m_containingBlockLogicalWidthChanged(false)
|
| - , m_flowThread(0)
|
| + , m_flowThread(nullptr)
|
| , m_next(root.view()->layoutState())
|
| , m_pageLogicalHeight(0)
|
| , m_layoutObject(root)
|
|
|