diff options
Diffstat (limited to 'WebCore/rendering/RenderTableRow.cpp')
-rw-r--r-- | WebCore/rendering/RenderTableRow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/rendering/RenderTableRow.cpp b/WebCore/rendering/RenderTableRow.cpp index d0bd511..2166ef2 100644 --- a/WebCore/rendering/RenderTableRow.cpp +++ b/WebCore/rendering/RenderTableRow.cpp @@ -4,7 +4,7 @@ * (C) 1998 Waldo Bastian (bastian@kde.org) * (C) 1999 Lars Knoll (knoll@kde.org) * (C) 1999 Antti Koivisto (koivisto@kde.org) - * Copyright (C) 2003, 2004, 2005, 2006 Apple Computer, Inc. + * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -54,7 +54,7 @@ void RenderTableRow::destroy() void RenderTableRow::styleWillChange(StyleDifference diff, const RenderStyle* newStyle) { - if (section() && style() && style()->height() != newStyle->height()) + if (section() && style() && style()->logicalHeight() != newStyle->logicalHeight()) section()->setNeedsCellRecalc(); ASSERT(newStyle->display() == TABLE_ROW); |