Last checkin accidentally reversed the sense of the aContent test; fixing that.

This commit is contained in:
bzbarsky%mit.edu 2003-07-29 07:37:48 +00:00
parent 33e6f34628
commit 61f21f8dac

View File

@ -205,7 +205,7 @@ nsXMLPrettyPrinter::MaybeUnhook(nsIContent* aContent)
{
// If there either aContent is null (the document-node was modified) or
// there isn't a binding parent we know it's non-anonymous content.
if (aContent || !aContent->GetBindingParent()) {
if (!aContent || !aContent->GetBindingParent()) {
mUnhookPending = PR_TRUE;
}
}