Bug 1425321 - Renaming nsINode::GetChildAt to GetChildAt_Deprecated, r=me

This commit is contained in:
Andrea Marchesini 2018-01-03 14:04:09 +01:00
Родитель a5bdaa8cf2
Коммит a861feff81
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -413,7 +413,7 @@ sdnAccessible::get_childAt(unsigned aChildIndex,
if (IsDefunct())
return CO_E_OBJNOTCONNECTED;
nsINode* resultNode = mNode->GetChildAt(aChildIndex);
nsINode* resultNode = mNode->GetChildAt_Deprecated(aChildIndex);
if (resultNode) {
*aNode = static_cast<ISimpleDOMNode*>(new sdnAccessible(resultNode));
(*aNode)->AddRef();