Bug 190735. nsIFrame deCOMtamination, r+rs=dbaron

git-svn-id: svn://10.0.0.236/trunk@145537 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
roc+%cs.cmu.edu
2003-08-04 12:39:51 +00:00
parent 5e6511d326
commit 7683429d2e
34 changed files with 387 additions and 798 deletions

View File

@@ -174,12 +174,11 @@ nsStackFrame::GetStackedFrameForPoint(nsIPresContext* aPresContext,
{
// look at all the children is reverse order. Use the stack to do
// this.
nsIFrame* next;
nsresult rv;
aChild->GetNextSibling(&next);
if (next != nsnull) {
nsIFrame* next = aChild->GetNextSibling();
if (next) {
rv = GetStackedFrameForPoint(aPresContext, next, aRect, aPoint, aFrame);
if (NS_SUCCEEDED(rv) && *aFrame)
if (NS_SUCCEEDED(rv) && *aFrame)
return rv;
}