| Index: Source/core/svg/SVGTitleElement.cpp
|
| diff --git a/Source/core/svg/SVGTitleElement.cpp b/Source/core/svg/SVGTitleElement.cpp
|
| index 99050189f146e948dc50c57c2d82817a8aebacbb..3ad78b6f26880fcf3a469d4f674d406bb6866535 100644
|
| --- a/Source/core/svg/SVGTitleElement.cpp
|
| +++ b/Source/core/svg/SVGTitleElement.cpp
|
| @@ -51,9 +51,9 @@ void SVGTitleElement::removedFrom(ContainerNode* rootParent)
|
| document().removeTitle(this);
|
| }
|
|
|
| -void SVGTitleElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
|
| +void SVGTitleElement::childrenChanged(const ChildrenChange& change)
|
| {
|
| - SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
|
| + SVGElement::childrenChanged(change);
|
| if (inDocument() && document().isSVGDocument())
|
| document().setTitleElement(textContent(), this);
|
| }
|
|
|