Bug 109200. Noisy notify when removing an element so broadcasters, etc. get update properly. r=ben, sr=hyatt

This commit is contained in:
waterson%netscape.com 2002-01-14 21:41:19 +00:00
parent 3de7309fc3
commit d61a43837a

View File

@ -6997,7 +6997,7 @@ nsXULDocument::RemoveElement(nsIContent* aParent, nsIContent* aChild)
rv = aParent->IndexOf(aChild, nodeOffset);
if (NS_FAILED(rv)) return rv;
rv = aParent->RemoveChildAt(nodeOffset, PR_FALSE);
rv = aParent->RemoveChildAt(nodeOffset, PR_TRUE);
if (NS_FAILED(rv)) return rv;
return NS_OK;