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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user