mshtml: Added IHTMLDOMNode2::get_ownerDocument implementation.

This commit is contained in:
Jacek Caban 2009-09-20 18:59:57 +02:00 committed by Alexandre Julliard
parent e70e1249c3
commit 58d67c2758
1 changed files with 6 additions and 2 deletions

View File

@ -808,8 +808,12 @@ static HRESULT WINAPI HTMLDOMNode2_Invoke(IHTMLDOMNode2 *iface, DISPID dispIdMem
static HRESULT WINAPI HTMLDOMNode2_get_ownerDocument(IHTMLDOMNode2 *iface, IDispatch **p)
{
HTMLDOMNode *This = HTMLDOMNODE2_THIS(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL;
TRACE("(%p)->(%p)\n", This, p);
*p = (IDispatch*)HTMLDOC(&This->doc->basedoc);
IDispatch_AddRef(*p);
return S_OK;
}
#undef HTMLDOMNODE2_THIS