| Index: sky/engine/core/rendering/RenderParagraph.cpp
|
| diff --git a/sky/engine/core/rendering/RenderParagraph.cpp b/sky/engine/core/rendering/RenderParagraph.cpp
|
| index fd45b3c1a225b5c2ade9baa9d538cc11a16caf7e..4af869ec705d6eee834089340a2ae33c1d5bbb0b 100644
|
| --- a/sky/engine/core/rendering/RenderParagraph.cpp
|
| +++ b/sky/engine/core/rendering/RenderParagraph.cpp
|
| @@ -177,9 +177,9 @@ void RenderParagraph::paintChildren(PaintInfo& paintInfo, const LayoutPoint& pai
|
| m_lineBoxes.paint(this, paintInfo, paintOffset, layers);
|
| }
|
|
|
| -bool RenderParagraph::hitTestContents(const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, HitTestAction hitTestAction)
|
| +bool RenderParagraph::hitTestContents(const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset)
|
| {
|
| - return m_lineBoxes.hitTest(this, request, result, locationInContainer, accumulatedOffset, hitTestAction);
|
| + return m_lineBoxes.hitTest(this, request, result, locationInContainer, accumulatedOffset);
|
| }
|
|
|
| void RenderParagraph::markLinesDirtyInBlockRange(LayoutUnit logicalTop, LayoutUnit logicalBottom, RootInlineBox* highest)
|
|
|