fix returned error code for nsIAccessibleHyperText implementation with nsIFrameAccessible

bug=155873 r=aaronl sr=jst patch=gilbert.fang@sun.com
This commit is contained in:
pete.zha%sun.com 2002-07-09 02:48:20 +00:00
Родитель 8b3e803d1a
Коммит d0b062d7c9
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -281,7 +281,7 @@ nsresult nsHTMLIFrameAccessible::GetLinkIndexFromAccNode(nsIAccessible *aAccNode
return NS_OK;
}
*_retval = -1;
return NS_ERROR_INVALID_ARG;
return NS_OK;
}
//begin to count char length
@ -289,9 +289,10 @@ nsresult nsHTMLIFrameAccessible::GetLinkIndexFromAccNode(nsIAccessible *aAccNode
aAccNode->GetAccName(tempAccName);
charLength = tempAccName.Length();
if (aCharIndex < charLength) {
rv = NS_OK;
*_retval = -1;
return NS_OK;
}
return NS_ERROR_INVALID_ARG;
}
if (IsHyperLink(aAccNode)) {
links = 1;