Updated a comment

git-svn-id: svn://10.0.0.236/trunk@19173 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp%netscape.com
1999-02-01 17:32:19 +00:00
parent 8f2fcbc3a4
commit 0a6cd2c879
2 changed files with 18 additions and 2 deletions

View File

@@ -43,13 +43,21 @@ public:
// aPlaceholderFrame's sibling pointer is set to what aFrame's
// sibling pointer was. It's up to the caller to adjust any previous
// sibling pointers.
// XXX bad api - need nsresult in case we attempt to move out of the
// flow and run out of memory
PRBool MoveFrameOutOfFlow(nsIPresContext& aPresContext,
nsIFrame* aFrame,
const nsStyleDisplay* aDisplay,
const nsStylePosition* aPosition,
nsIFrame*& aPlaceholderFrame);
// Helper method to create next-in-flows if necessary
/**
* Helper method to create next-in-flows if necessary. If aFrame
* already has a next-in-flow then this method does
* nothing. Otherwise, a new continuation frame is created and
* linked into the flow. In addition, the new frame becomes the
* next-sibling of aFrame.
*/
static nsresult CreateNextInFlow(nsIPresContext& aPresContext,
nsIFrame* aOuterFrame,
nsIFrame* aFrame,