Removed Join() function from nsFrameList, because we already has a version

of AppendFrames() that did the same exact thing


git-svn-id: svn://10.0.0.236/trunk@27241 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com
1999-04-13 00:06:17 +00:00
parent 67f9b10488
commit bca10111d4
10 changed files with 12 additions and 22 deletions

View File

@@ -2738,14 +2738,14 @@ nsTableFrame::MoveOverflowToChildList()
nsTableFrame* prevInFlow = (nsTableFrame*)mPrevInFlow;
if (nsnull != prevInFlow) {
if (prevInFlow->mOverflowFrames.NotEmpty()) {
mFrames.Join(this, prevInFlow->mOverflowFrames);
mFrames.AppendFrames(this, prevInFlow->mOverflowFrames);
result = PR_TRUE;
}
}
// It's also possible that we have an overflow list for ourselves
if (mOverflowFrames.NotEmpty()) {
mFrames.Join(nsnull, mOverflowFrames);
mFrames.AppendFrames(nsnull, mOverflowFrames);
result = PR_TRUE;
}
return result;