This commit is contained in:
kipp%netscape.com 1998-11-10 19:20:53 +00:00
Родитель f775a3a3ef
Коммит 6594f8745d
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -713,7 +713,7 @@ nsBodyFrame::ComputeDesiredSize(nsIPresContext& aPresContext,
}
// Add the frame to the end of the child list
void nsBodyFrame::AddFrame(nsIFrame* aFrame)
void nsBodyFrame::AddAbsoluteFrame(nsIFrame* aFrame)
{
nsIFrame* lastChild = LastFrame(mFirstChild);
@ -933,7 +933,7 @@ nsBodyFrame::ReflowAbsoluteItems(nsIPresContext& aPresContext,
absoluteFrame->SetGeometricParent(this);
// Add the absolutely positioned frame to the end of the child list
AddFrame(absoluteFrame);
AddAbsoluteFrame(absoluteFrame);
// Make sure the frame has a view
nsIView* view;

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

@ -105,7 +105,7 @@ protected:
const nsStylePosition* aPosition,
nsRect& aRect) const;
void AddFrame(nsIFrame* aFrame);
void AddAbsoluteFrame(nsIFrame* aFrame);
private:
nsSpaceManager* mSpaceManager;