fixing linux bustage. got caught by a platform difference in handling

of nsCOMPtr and the equality operator
This commit is contained in:
buster%netscape.com 2000-02-02 08:28:37 +00:00
Родитель d2e420cfb4
Коммит e959bc93cd
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1799,7 +1799,7 @@ nsLineLayout::ComputeQuirksModeLineHeightData(nsIRenderingContext *aRC,
{ {
nsCOMPtr<nsIAtom> tag; nsCOMPtr<nsIAtom> tag;
content->GetTag(*(getter_AddRefs(tag))); content->GetTag(*(getter_AddRefs(tag)));
if (nsHTMLAtoms::font==tag) if (nsHTMLAtoms::font==tag.get())
{ {
nsAutoString resultString; nsAutoString resultString;
nsresult result; nsresult result;

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

@ -1799,7 +1799,7 @@ nsLineLayout::ComputeQuirksModeLineHeightData(nsIRenderingContext *aRC,
{ {
nsCOMPtr<nsIAtom> tag; nsCOMPtr<nsIAtom> tag;
content->GetTag(*(getter_AddRefs(tag))); content->GetTag(*(getter_AddRefs(tag)));
if (nsHTMLAtoms::font==tag) if (nsHTMLAtoms::font==tag.get())
{ {
nsAutoString resultString; nsAutoString resultString;
nsresult result; nsresult result;