Index: Source/core/layout/line/InlineFlowBox.cpp |
diff --git a/Source/core/layout/line/InlineFlowBox.cpp b/Source/core/layout/line/InlineFlowBox.cpp |
index 34bfa721797c945b73f140b87fcc4739c7ccdaa2..214e1c4a80859c954287b7670dd832724a90d569 100644 |
--- a/Source/core/layout/line/InlineFlowBox.cpp |
+++ b/Source/core/layout/line/InlineFlowBox.cpp |
@@ -384,7 +384,7 @@ FloatWillBeLayoutUnit InlineFlowBox::placeBoxRangeInInlineDirection(InlineBox* f |
for (InlineBox* curr = firstChild; curr && curr != lastChild; curr = curr->nextOnLine()) { |
if (curr->renderer().isText()) { |
InlineTextBox* text = toInlineTextBox(curr); |
- RenderText& rt = text->renderer(); |
+ LayoutText& rt = text->renderer(); |
FloatWillBeLayoutUnit space; |
if (rt.textLength()) { |
if (needsWordSpacing && isSpaceOrNewline(rt.characterAt(text->start()))) |
@@ -942,7 +942,7 @@ void InlineFlowBox::computeOverflow(LayoutUnit lineTop, LayoutUnit lineBottom, G |
if (curr->renderer().isText()) { |
InlineTextBox* text = toInlineTextBox(curr); |
- RenderText& rt = text->renderer(); |
+ LayoutText& rt = text->renderer(); |
if (rt.isBR()) |
continue; |
// FIXME: the call to enclosingLayoutRect() below is temporary and should be removed once |