diff options
Diffstat (limited to 'Source/WebCore/svg/SVGPolyElement.h')
-rw-r--r-- | Source/WebCore/svg/SVGPolyElement.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/svg/SVGPolyElement.h b/Source/WebCore/svg/SVGPolyElement.h index bd0dd49aa..f399a427e 100644 --- a/Source/WebCore/svg/SVGPolyElement.h +++ b/Source/WebCore/svg/SVGPolyElement.h @@ -33,8 +33,8 @@ namespace WebCore { class SVGPolyElement : public SVGGraphicsElement , public SVGExternalResourcesRequired { public: - SVGListPropertyTearOff<SVGPointList>* points(); - SVGListPropertyTearOff<SVGPointList>* animatedPoints(); + RefPtr<SVGListPropertyTearOff<SVGPointList> > points(); + RefPtr<SVGListPropertyTearOff<SVGPointList> > animatedPoints(); SVGPointList& pointList() const { return m_points.value; } |