summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/RenderTableCol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/rendering/RenderTableCol.cpp')
-rw-r--r--WebCore/rendering/RenderTableCol.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/rendering/RenderTableCol.cpp b/WebCore/rendering/RenderTableCol.cpp
index 80e74e1..66d060b 100644
--- a/WebCore/rendering/RenderTableCol.cpp
+++ b/WebCore/rendering/RenderTableCol.cpp
@@ -88,12 +88,12 @@ void RenderTableCol::imageChanged(WrappedImagePtr, const IntRect*)
repaint();
}
-void RenderTableCol::calcPrefWidths()
+void RenderTableCol::computePreferredLogicalWidths()
{
- setPrefWidthsDirty(false);
+ setPreferredLogicalWidthsDirty(false);
for (RenderObject* child = firstChild(); child; child = child->nextSibling())
- child->setPrefWidthsDirty(false);
+ child->setPreferredLogicalWidthsDirty(false);
}
RenderTable* RenderTableCol::table() const