| Index: Source/core/svg/SVGFEFloodElement.cpp
|
| diff --git a/Source/core/svg/SVGFEFloodElement.cpp b/Source/core/svg/SVGFEFloodElement.cpp
|
| index aad1eadfc47f906da40ba5c9167a7da35bf04545..afbab91cfe79c1182131e0e9f283d3d04b8a10a1 100644
|
| --- a/Source/core/svg/SVGFEFloodElement.cpp
|
| +++ b/Source/core/svg/SVGFEFloodElement.cpp
|
| @@ -37,7 +37,7 @@ DEFINE_NODE_FACTORY(SVGFEFloodElement)
|
|
|
| bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
|
| {
|
| - LayoutObject* renderer = this->renderer();
|
| + LayoutObject* renderer = this->layoutObject();
|
| ASSERT(renderer);
|
| LayoutStyle* style = renderer->style();
|
| ASSERT(style);
|
| @@ -54,7 +54,7 @@ bool SVGFEFloodElement::setFilterEffectAttribute(FilterEffect* effect, const Qua
|
|
|
| PassRefPtrWillBeRawPtr<FilterEffect> SVGFEFloodElement::build(SVGFilterBuilder*, Filter* filter)
|
| {
|
| - LayoutObject* renderer = this->renderer();
|
| + LayoutObject* renderer = this->layoutObject();
|
| if (!renderer)
|
| return nullptr;
|
|
|
|
|