Correcting checking of fix for bug 258410. Fix dynamic matrix transforms. Patched by alex@croczilla.com, r=me

This commit is contained in:
jwatt%jwatt.org 2005-09-18 19:49:12 +00:00
parent 0346043b72
commit d7a4dd3ee7

View File

@ -123,8 +123,9 @@ nsSVGTransform::~nsSVGTransform()
nsresult nsSVGTransform::Init()
{
return NS_NewSVGMatrix(getter_AddRefs(mMatrix));
nsresult rv = NS_NewSVGMatrix(getter_AddRefs(mMatrix));
NS_ADD_SVGVALUE_OBSERVER(mMatrix);
return rv;
}
//----------------------------------------------------------------------