Index: Source/core/svg/SVGPointTearOff.h |
diff --git a/Source/core/svg/SVGPointTearOff.h b/Source/core/svg/SVGPointTearOff.h |
index a364737b5161c88661ec56668585c16c16deca4c..f4f44348cdd8ed0c1034473c0791a692185b53fb 100644 |
--- a/Source/core/svg/SVGPointTearOff.h |
+++ b/Source/core/svg/SVGPointTearOff.h |
@@ -41,7 +41,7 @@ class SVGMatrixTearOff; |
class SVGPointTearOff : public SVGPropertyTearOff<SVGPoint>, public ScriptWrappable { |
public: |
- static PassRefPtr<SVGPointTearOff> create(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = nullQName()) |
+ static PassRefPtr<SVGPointTearOff> create(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) |
{ |
return adoptRef(new SVGPointTearOff(target, contextElement, propertyIsAnimVal, attributeName)); |
} |
@@ -54,7 +54,7 @@ public: |
PassRefPtr<SVGPointTearOff> matrixTransform(PassRefPtr<SVGMatrixTearOff>); |
protected: |
- SVGPointTearOff(PassRefPtr<SVGPoint>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = nullQName()); |
+ SVGPointTearOff(PassRefPtr<SVGPoint>, SVGElement* contextElement, PropertyIsAnimValType, const QualifiedName& attributeName = QualifiedName::null()); |
}; |
} // namespace WebCore |