Make mComputedWidth private, with a getter/setter, and make the setter update

the resize flags.  Bug 367442, r+sr=dbaron
This commit is contained in:
bzbarsky@mit.edu
2007-01-26 00:05:12 +00:00
parent abbd368eeb
commit b09985c9eb
32 changed files with 124 additions and 117 deletions

View File

@@ -160,7 +160,7 @@ FixedTableLayoutStrategy::MarkIntrinsicWidthsDirty()
/* virtual */ void
FixedTableLayoutStrategy::ComputeColumnWidths(const nsHTMLReflowState& aReflowState)
{
nscoord tableWidth = aReflowState.mComputedWidth;
nscoord tableWidth = aReflowState.ComputedWidth();
if (mLastCalcWidth == tableWidth)
return;