Bug 1425321 - Renaming nsINode::RemoveChildAt to RemoveChildAt_Deprecated, r=catalinb

This commit is contained in:
Andrea Marchesini
2018-01-03 14:01:03 +01:00
parent 98865c5324
commit 082fc2f0f2
31 changed files with 57 additions and 54 deletions

View File

@@ -170,7 +170,7 @@ HTMLFieldSetElement::InsertChildAt(nsIContent* aChild, uint32_t aIndex,
}
void
HTMLFieldSetElement::RemoveChildAt(uint32_t aIndex, bool aNotify)
HTMLFieldSetElement::RemoveChildAt_Deprecated(uint32_t aIndex, bool aNotify)
{
bool firstLegendHasChanged = false;
@@ -188,7 +188,7 @@ HTMLFieldSetElement::RemoveChildAt(uint32_t aIndex, bool aNotify)
}
}
nsGenericHTMLFormElement::RemoveChildAt(aIndex, aNotify);
nsGenericHTMLFormElement::RemoveChildAt_Deprecated(aIndex, aNotify);
if (firstLegendHasChanged) {
NotifyElementsForFirstLegendChange(aNotify);