Index: Source/core/layout/LayoutTableAlgorithmAuto.cpp |
diff --git a/Source/core/layout/LayoutTableAlgorithmAuto.cpp b/Source/core/layout/LayoutTableAlgorithmAuto.cpp |
index ec07688fac840d7ac9f62d6318d6861e80b418cf..744c1e5c1d2f60d30574244c18bed002167c1923 100644 |
--- a/Source/core/layout/LayoutTableAlgorithmAuto.cpp |
+++ b/Source/core/layout/LayoutTableAlgorithmAuto.cpp |
@@ -48,7 +48,7 @@ void LayoutTableAlgorithmAuto::recalcColumn(unsigned effCol) |
LayoutTableCell* fixedContributor = 0; |
LayoutTableCell* maxContributor = 0; |
- for (RenderObject* child = m_table->children()->firstChild(); child; child = child->nextSibling()) { |
+ for (LayoutObject* child = m_table->children()->firstChild(); child; child = child->nextSibling()) { |
if (child->isLayoutTableCol()) { |
// LayoutTableCols don't have the concept of preferred logical width, but we need to clear their dirty bits |
// so that if we call setPreferredWidthsDirty(true) on a col or one of its descendants, we'll mark it's |