stupid friggin' .get() nsCOMPtr incompatibility on linux

This commit is contained in:
buster%netscape.com 2001-01-16 22:54:52 +00:00
Родитель 96891eb635
Коммит ab3660ef24
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -10946,7 +10946,7 @@ keepLooking:
// to the parent content.
nsCOMPtr<nsIContent> parentScope;
kidContent->GetBindingParent(getter_AddRefs(parentScope));
if (kidContent.get() == parentContent || IsFrameSpecial(kidFrame) ||
if (parentContent == kidContent.get() || IsFrameSpecial(kidFrame) ||
(parentContent && (parentContent == parentScope.get())))
{
#ifdef NOISY_FINDFRAME

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

@ -10946,7 +10946,7 @@ keepLooking:
// to the parent content.
nsCOMPtr<nsIContent> parentScope;
kidContent->GetBindingParent(getter_AddRefs(parentScope));
if (kidContent.get() == parentContent || IsFrameSpecial(kidFrame) ||
if (parentContent == kidContent.get() || IsFrameSpecial(kidFrame) ||
(parentContent && (parentContent == parentScope.get())))
{
#ifdef NOISY_FINDFRAME