Fixed sloppiness with nsCOMPtr's that Win32 compiler didn't pick up.

This commit is contained in:
waterson%netscape.com 1999-03-02 01:47:18 +00:00
Родитель 21a57bccb3
Коммит 8e1cdfed42
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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;