Bug 651120 - Remove index argument from content removed/appended/inserted notifications. r=peterv
This commit is contained in:
@@ -64,8 +64,7 @@ HTMLTitleElement::CharacterDataChanged(nsIDocument *aDocument,
|
||||
void
|
||||
HTMLTitleElement::ContentAppended(nsIDocument *aDocument,
|
||||
nsIContent *aContainer,
|
||||
nsIContent *aFirstNewContent,
|
||||
int32_t aNewIndexInContainer)
|
||||
nsIContent *aFirstNewContent)
|
||||
{
|
||||
SendTitleChangeEvent(false);
|
||||
}
|
||||
@@ -73,8 +72,7 @@ HTMLTitleElement::ContentAppended(nsIDocument *aDocument,
|
||||
void
|
||||
HTMLTitleElement::ContentInserted(nsIDocument *aDocument,
|
||||
nsIContent *aContainer,
|
||||
nsIContent *aChild,
|
||||
int32_t aIndexInContainer)
|
||||
nsIContent *aChild)
|
||||
{
|
||||
SendTitleChangeEvent(false);
|
||||
}
|
||||
@@ -83,7 +81,6 @@ void
|
||||
HTMLTitleElement::ContentRemoved(nsIDocument *aDocument,
|
||||
nsIContent *aContainer,
|
||||
nsIContent *aChild,
|
||||
int32_t aIndexInContainer,
|
||||
nsIContent *aPreviousSibling)
|
||||
{
|
||||
SendTitleChangeEvent(false);
|
||||
|
||||
Reference in New Issue
Block a user