mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 342045 - solaris bustage fix, r=surkov
This commit is contained in:
parent
a3ff009b80
commit
08876c7904
@ -1073,7 +1073,7 @@ nsXULTreeItemAccessibleBase::GetStateInternal(PRUint32 *aState,
|
||||
nsIAccessible*
|
||||
nsXULTreeItemAccessibleBase::GetParent()
|
||||
{
|
||||
return IsDefunct() ? nsnull : mParent;
|
||||
return IsDefunct() ? nsnull : mParent.get();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1225,7 +1225,7 @@ nsXULTreeGridCellAccessible::GetStateInternal(PRUint32 *aStates,
|
||||
nsIAccessible*
|
||||
nsXULTreeGridCellAccessible::GetParent()
|
||||
{
|
||||
return IsDefunct() ? nsnull : mParent;
|
||||
return IsDefunct() ? nsnull : mParent.get();
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user