Bug 39876. QI() for nsIXULContent rather than checking the element's namespace. Who knows, some day HTML might support nsIXULContent ;-). r=rjc

This commit is contained in:
waterson%netscape.com 2000-05-26 22:26:57 +00:00
parent fb87fec2d5
commit b6ac1476df
2 changed files with 26 additions and 32 deletions

View File

@ -5114,11 +5114,19 @@ nsXULTemplateBuilder::BuildContentFromTemplate(nsIContent *aTemplateNode,
}
if (nameSpaceID == kNameSpaceID_HTML) {
// If we just built HTML, then we have to recurse "by
// hand" because HTML won't build itself up
// lazily. Note that we _don't_ need to notify: we'll
// add the entire subtree in a single whack.
nsCOMPtr<nsIXULContent> xulcontent = do_QueryInterface(realKid);
if (xulcontent) {
// Just mark the XUL element as requiring more work to
// be done. We'll get around to it when somebody asks
// for it.
rv = xulcontent->SetLazyState(nsIXULContent::eChildrenMustBeRebuilt);
if (NS_FAILED(rv)) return rv;
}
else {
// Otherwise, it doesn't support lazy instantiation,
// and we have to recurse "by hand". Note that we
// _don't_ need to notify: we'll add the entire
// subtree in a single whack.
//
// Note that we don't bother passing aContainer and
// aNewIndexInContainer down: since we're HTML, we
@ -5137,17 +5145,6 @@ nsXULTemplateBuilder::BuildContentFromTemplate(nsIContent *aTemplateNode,
if (NS_FAILED(rv)) return rv;
}
}
else {
// Otherwise, just mark the XUL element as requiring
// more work to be done. We'll get around to it when
// somebody asks for it.
nsCOMPtr<nsIXULContent> xulcontent = do_QueryInterface(realKid);
if (! xulcontent)
return NS_ERROR_UNEXPECTED;
rv = xulcontent->SetLazyState(nsIXULContent::eChildrenMustBeRebuilt);
if (NS_FAILED(rv)) return rv;
}
// We'll _already_ have added the unique elements; but if
// it's -not- unique, then use the XUL sort service now to

View File

@ -5114,11 +5114,19 @@ nsXULTemplateBuilder::BuildContentFromTemplate(nsIContent *aTemplateNode,
}
if (nameSpaceID == kNameSpaceID_HTML) {
// If we just built HTML, then we have to recurse "by
// hand" because HTML won't build itself up
// lazily. Note that we _don't_ need to notify: we'll
// add the entire subtree in a single whack.
nsCOMPtr<nsIXULContent> xulcontent = do_QueryInterface(realKid);
if (xulcontent) {
// Just mark the XUL element as requiring more work to
// be done. We'll get around to it when somebody asks
// for it.
rv = xulcontent->SetLazyState(nsIXULContent::eChildrenMustBeRebuilt);
if (NS_FAILED(rv)) return rv;
}
else {
// Otherwise, it doesn't support lazy instantiation,
// and we have to recurse "by hand". Note that we
// _don't_ need to notify: we'll add the entire
// subtree in a single whack.
//
// Note that we don't bother passing aContainer and
// aNewIndexInContainer down: since we're HTML, we
@ -5137,17 +5145,6 @@ nsXULTemplateBuilder::BuildContentFromTemplate(nsIContent *aTemplateNode,
if (NS_FAILED(rv)) return rv;
}
}
else {
// Otherwise, just mark the XUL element as requiring
// more work to be done. We'll get around to it when
// somebody asks for it.
nsCOMPtr<nsIXULContent> xulcontent = do_QueryInterface(realKid);
if (! xulcontent)
return NS_ERROR_UNEXPECTED;
rv = xulcontent->SetLazyState(nsIXULContent::eChildrenMustBeRebuilt);
if (NS_FAILED(rv)) return rv;
}
// We'll _already_ have added the unique elements; but if
// it's -not- unique, then use the XUL sort service now to