mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-29 03:44:37 +00:00
Try fixing another Unix pedantic issue.
This commit is contained in:
parent
d008573b76
commit
f84a92af1e
@ -845,7 +845,7 @@ RDFGenericBuilderImpl::PopulateWidgetItemSubtree(nsIContent *aTemplateRoot, nsIC
|
||||
}
|
||||
#endif
|
||||
|
||||
if ((tag == containmentAtom) && (nameSpaceID == kNameSpaceID_XUL))
|
||||
if ((tag == containmentAtom.get()) && (nameSpaceID == kNameSpaceID_XUL))
|
||||
{
|
||||
if (NS_FAILED(rv = CreateResourceElement(nameSpaceID,
|
||||
containmentAtom, aValue, getter_AddRefs(treeGrandchild))))
|
||||
|
@ -845,7 +845,7 @@ RDFGenericBuilderImpl::PopulateWidgetItemSubtree(nsIContent *aTemplateRoot, nsIC
|
||||
}
|
||||
#endif
|
||||
|
||||
if ((tag == containmentAtom) && (nameSpaceID == kNameSpaceID_XUL))
|
||||
if ((tag == containmentAtom.get()) && (nameSpaceID == kNameSpaceID_XUL))
|
||||
{
|
||||
if (NS_FAILED(rv = CreateResourceElement(nameSpaceID,
|
||||
containmentAtom, aValue, getter_AddRefs(treeGrandchild))))
|
||||
|
@ -845,7 +845,7 @@ RDFGenericBuilderImpl::PopulateWidgetItemSubtree(nsIContent *aTemplateRoot, nsIC
|
||||
}
|
||||
#endif
|
||||
|
||||
if ((tag == containmentAtom) && (nameSpaceID == kNameSpaceID_XUL))
|
||||
if ((tag == containmentAtom.get()) && (nameSpaceID == kNameSpaceID_XUL))
|
||||
{
|
||||
if (NS_FAILED(rv = CreateResourceElement(nameSpaceID,
|
||||
containmentAtom, aValue, getter_AddRefs(treeGrandchild))))
|
||||
|
Loading…
Reference in New Issue
Block a user