This commit is contained in:
mjudge%netscape.com 2000-04-12 04:20:07 +00:00
Родитель c6128bbf01
Коммит af97e4a182
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -242,7 +242,7 @@ nsLeafIterator::Next()
break;
}
else
if (NS_FAILED(parent->GetParent(&result)) || !result || (NS_SUCCEEDED(result->GetFrameType(getter_AddRefs(atom))) && atom == nsLayoutAtoms::rootFrame)){
if (NS_FAILED(parent->GetParent(&result)) || !result || (NS_SUCCEEDED(result->GetFrameType(getter_AddRefs(atom))) && atom.get() == nsLayoutAtoms::rootFrame)){
result = nsnull;
break;
}

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

@ -242,7 +242,7 @@ nsLeafIterator::Next()
break;
}
else
if (NS_FAILED(parent->GetParent(&result)) || !result || (NS_SUCCEEDED(result->GetFrameType(getter_AddRefs(atom))) && atom == nsLayoutAtoms::rootFrame)){
if (NS_FAILED(parent->GetParent(&result)) || !result || (NS_SUCCEEDED(result->GetFrameType(getter_AddRefs(atom))) && atom.get() == nsLayoutAtoms::rootFrame)){
result = nsnull;
break;
}