mshtml: Forward IHTMLDocument3::get_childNodes to IHTMLDOMNode implemnentation.

This commit is contained in:
Jacek Caban 2013-02-20 15:20:51 +01:00 committed by Alexandre Julliard
parent fa5075f7de
commit c2cfc4cf8b
1 changed files with 4 additions and 2 deletions

View File

@ -496,8 +496,10 @@ static HRESULT WINAPI HTMLDocument3_get_baseUrl(IHTMLDocument3 *iface, BSTR *p)
static HRESULT WINAPI HTMLDocument3_get_childNodes(IHTMLDocument3 *iface, IDispatch **p) static HRESULT WINAPI HTMLDocument3_get_childNodes(IHTMLDocument3 *iface, IDispatch **p)
{ {
HTMLDocument *This = impl_from_IHTMLDocument3(iface); HTMLDocument *This = impl_from_IHTMLDocument3(iface);
FIXME("(%p)->(%p)\n", This, p);
return E_NOTIMPL; TRACE("(%p)->(%p)\n", This, p);
return IHTMLDOMNode_get_childNodes(&This->doc_node->node.IHTMLDOMNode_iface, p);
} }
static HRESULT WINAPI HTMLDocument3_put_inheritStyleSheets(IHTMLDocument3 *iface, static HRESULT WINAPI HTMLDocument3_put_inheritStyleSheets(IHTMLDocument3 *iface,