static void HTMLTableRow_destructor(HTMLDOMNode *iface) { HTMLTableRow *This = HTMLTABLEROW_NODE_THIS(iface); if(This->nsrow) nsIDOMHTMLTableRowElement_Release(This->nsrow); HTMLElement_destructor(&This->element.node); }
static void HTMLTableRow_unlink(HTMLDOMNode *iface) { HTMLTableRow *This = impl_from_HTMLDOMNode(iface); if(This->nsrow) { nsIDOMHTMLTableRowElement *nsrow = This->nsrow; This->nsrow = NULL; nsIDOMHTMLTableRowElement_Release(nsrow); } }