| Index: Source/core/svg/SVGTextPositioningElement.cpp
|
| diff --git a/Source/core/svg/SVGTextPositioningElement.cpp b/Source/core/svg/SVGTextPositioningElement.cpp
|
| index bf21522eaed5f4ab26b64d42a1153b2bfd7fc4df..cae5ef80d6eb8978235abccaf13189f23a923ef7 100644
|
| --- a/Source/core/svg/SVGTextPositioningElement.cpp
|
| +++ b/Source/core/svg/SVGTextPositioningElement.cpp
|
| @@ -89,7 +89,7 @@ void SVGTextPositioningElement::svgAttributeChanged(const QualifiedName& attrNam
|
| if (updateRelativeLengths)
|
| updateRelativeLengthsInformation();
|
|
|
| - RenderObject* renderer = this->renderer();
|
| + LayoutObject* renderer = this->renderer();
|
| if (!renderer)
|
| return;
|
|
|
| @@ -100,7 +100,7 @@ void SVGTextPositioningElement::svgAttributeChanged(const QualifiedName& attrNam
|
| markForLayoutAndParentResourceInvalidation(renderer);
|
| }
|
|
|
| -SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(RenderObject& renderer)
|
| +SVGTextPositioningElement* SVGTextPositioningElement::elementFromRenderer(LayoutObject& renderer)
|
| {
|
| if (!renderer.isSVGText() && !renderer.isSVGInline())
|
| return 0;
|
|
|