| Index: Source/WebCore/rendering/RenderMultiColumnBlock.cpp
|
| diff --git a/Source/WebCore/rendering/RenderMultiColumnBlock.cpp b/Source/WebCore/rendering/RenderMultiColumnBlock.cpp
|
| index 168b1efab53a7399d7582bd2e93b29440a9c26a1..e3781d9192e02d2a92a02299338a07351d87d453 100644
|
| --- a/Source/WebCore/rendering/RenderMultiColumnBlock.cpp
|
| +++ b/Source/WebCore/rendering/RenderMultiColumnBlock.cpp
|
| @@ -44,9 +44,9 @@ RenderMultiColumnBlock::RenderMultiColumnBlock(Element* element)
|
| {
|
| }
|
|
|
| -void RenderMultiColumnBlock::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle)
|
| +void RenderMultiColumnBlock::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle, const StyleChangeState& state)
|
| {
|
| - RenderBlock::styleDidChange(diff, oldStyle);
|
| + RenderBlock::styleDidChange(diff, oldStyle, state);
|
| for (RenderBox* child = firstChildBox(); child; child = child->nextSiblingBox())
|
| child->setStyle(RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK));
|
| }
|
|
|