Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 510 of file htmlbody.c.
{ HTMLBodyElement *This = HTMLBODY_THIS(iface); nsAString vlink_str; nsresult nsres; TRACE("(%p)->(v%d)\n", This, V_VT(&v)); if(!variant_to_nscolor(&v, &vlink_str)) return S_OK; nsres = nsIDOMHTMLBodyElement_SetVLink(This->nsbody, &vlink_str); nsAString_Finish(&vlink_str); if(NS_FAILED(nsres)) ERR("SetLink failed: %08x\n", nsres); return S_OK; }