Fix reflow state member names. Fixes broken build.

This commit is contained in:
ramiro%netscape.com 1999-07-20 10:13:43 +00:00
Родитель a08a1270ea
Коммит fab6557955
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -205,8 +205,8 @@ nsMenuFrame::Reflow(nsIPresContext& aPresContext,
nsSize availSize(NS_UNCONSTRAINEDSIZE, NS_UNCONSTRAINEDSIZE);
nsHTMLReflowState kidReflowState(aPresContext, aReflowState, frame,
availSize);
kidReflowState.computedWidth = NS_UNCONSTRAINEDSIZE;
kidReflowState.computedHeight = NS_UNCONSTRAINEDSIZE;
kidReflowState.mComputedWidth = NS_UNCONSTRAINEDSIZE;
kidReflowState.mComputedHeight = NS_UNCONSTRAINEDSIZE;
// Reflow child
nscoord w = aDesiredSize.width;
@ -225,4 +225,4 @@ nsMenuFrame::Reflow(nsIPresContext& aPresContext,
aDesiredSize.height = h;
}
return rv;
}
}