Bug 55086. Change nsContainerFrame::PositionFrameView() to position child views. Eliminate the |aView| parameter from that method, because the view can be retrieved from the frame and need not be done by the caller. Eliminate the NS_FRAME_NO_MOVE_CHILD_VIEWS flag, which was read-only; i.e., never set by anyone. r=dbaron, sr=attinasi

git-svn-id: svn://10.0.0.236/trunk@102321 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com
2001-09-05 20:27:19 +00:00
parent 34ed787b7e
commit 43c613727c
30 changed files with 235 additions and 262 deletions

View File

@@ -385,13 +385,7 @@ void
nsTableFrame::RePositionViews(nsIPresContext* aPresContext,
nsIFrame* aFrame)
{
nsIView* view;
aFrame->GetView(aPresContext, &view);
if (view) {
nsContainerFrame::PositionFrameView(aPresContext, aFrame, view);
} else {
nsContainerFrame::PositionChildViews(aPresContext, aFrame);
}
nsContainerFrame::PositionFrameView(aPresContext, aFrame);
}
nsIPresShell*