| Index: Source/core/rendering/RenderMultiColumnSet.cpp
|
| diff --git a/Source/core/rendering/RenderMultiColumnSet.cpp b/Source/core/rendering/RenderMultiColumnSet.cpp
|
| index 96f2f39d533e382f9572127272412d4cb3a1b23b..efdb7f6b5e726f9f985cb873b9169530fd88fccf 100644
|
| --- a/Source/core/rendering/RenderMultiColumnSet.cpp
|
| +++ b/Source/core/rendering/RenderMultiColumnSet.cpp
|
| @@ -26,6 +26,7 @@
|
| #include "config.h"
|
| #include "core/rendering/RenderMultiColumnSet.h"
|
|
|
| +#include "core/paint/BoxPainter.h"
|
| #include "core/rendering/PaintInfo.h"
|
| #include "core/rendering/RenderLayer.h"
|
| #include "core/rendering/RenderMultiColumnFlowThread.h"
|
| @@ -454,7 +455,7 @@ void RenderMultiColumnSet::paintColumnRules(PaintInfo& paintInfo, const LayoutPo
|
| if (colCount <= 1)
|
| return;
|
|
|
| - bool antialias = shouldAntialiasLines(paintInfo.context);
|
| + bool antialias = BoxPainter::shouldAntialiasLines(paintInfo.context);
|
|
|
| bool leftToRight = style()->isLeftToRightDirection();
|
| LayoutUnit currLogicalLeftOffset = leftToRight ? LayoutUnit() : contentLogicalWidth();
|
|
|