Index: Source/core/svg/SVGFEConvolveMatrixElement.cpp |
diff --git a/Source/core/svg/SVGFEConvolveMatrixElement.cpp b/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
index 12822241bd5577aa8dbdde6bfd14d3242e2cc1e9..d39e492c0e96451b17f7559feaf076782dc82721 100644 |
--- a/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
+++ b/Source/core/svg/SVGFEConvolveMatrixElement.cpp |
@@ -131,7 +131,7 @@ void SVGFEConvolveMatrixElement::parseAttribute(const QualifiedName& name, const |
else if (name == SVGNames::orderAttr) { |
m_order->setBaseValueAsString(value, parseError); |
if (parseError == NoError && (orderX()->baseValue()->value() < 1 || orderY()->baseValue()->value() < 1)) { |
- document().accessSVGExtensions()->reportWarning( |
+ document().accessSVGExtensions().reportWarning( |
"feConvolveMatrix: problem parsing order=\"" + value |
+ "\". Filtered element will not be displayed."); |
} |