зеркало из https://github.com/mozilla/gecko-dev.git
Fixed sloppiness with nsCOMPtr's that Win32 compiler didn't pick up.
This commit is contained in:
Родитель
21a57bccb3
Коммит
8e1cdfed42
|
@ -1897,11 +1897,11 @@ RDFTreeBuilderImpl::IsOpen(nsIContent* aElement)
|
|||
}
|
||||
|
||||
// The <xul:treebody> is _always_ open.
|
||||
if (tag == kTreeBodyAtom)
|
||||
if (tag.get() == kTreeBodyAtom)
|
||||
return PR_TRUE;
|
||||
|
||||
// If it's not a <xul:treeitem>, then it's not open.
|
||||
if (tag != kTreeItemAtom)
|
||||
if (tag.get() != kTreeItemAtom)
|
||||
return PR_FALSE;
|
||||
|
||||
nsAutoString value;
|
||||
|
|
Загрузка…
Ссылка в новой задаче