Index: Source/core/layout/LayoutTableCol.cpp |
diff --git a/Source/core/layout/LayoutTableCol.cpp b/Source/core/layout/LayoutTableCol.cpp |
index f6e1ccf7ede9d76a1f202c18ffd364f73ee2399d..379747977b28f19021cc9482560d4615951d94e3 100644 |
--- a/Source/core/layout/LayoutTableCol.cpp |
+++ b/Source/core/layout/LayoutTableCol.cpp |
@@ -36,7 +36,7 @@ namespace blink { |
using namespace HTMLNames; |
LayoutTableCol::LayoutTableCol(Element* element) |
- : RenderBox(element) |
+ : LayoutBox(element) |
, m_span(1) |
{ |
// init LayoutObject attributes |
@@ -46,7 +46,7 @@ LayoutTableCol::LayoutTableCol(Element* element) |
void LayoutTableCol::styleDidChange(StyleDifference diff, const LayoutStyle* oldStyle) |
{ |
- RenderBox::styleDidChange(diff, oldStyle); |
+ LayoutBox::styleDidChange(diff, oldStyle); |
// If border was changed, notify table. |
if (parent()) { |
@@ -86,13 +86,13 @@ void LayoutTableCol::updateFromElement() |
void LayoutTableCol::insertedIntoTree() |
{ |
- RenderBox::insertedIntoTree(); |
+ LayoutBox::insertedIntoTree(); |
table()->addColumn(this); |
} |
void LayoutTableCol::willBeRemovedFromTree() |
{ |
- RenderBox::willBeRemovedFromTree(); |
+ LayoutBox::willBeRemovedFromTree(); |
table()->removeColumn(this); |
} |