зеркало из https://github.com/mozilla/pjs.git
stupid friggin' .get() nsCOMPtr incompatibility on linux
This commit is contained in:
Родитель
96891eb635
Коммит
ab3660ef24
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче