Module: wine Branch: master Commit: c2cfc4cf8b25a2ac3f155725ffffdbcf806282cc URL: http://source.winehq.org/git/wine.git/?a=commit;h=c2cfc4cf8b25a2ac3f155725ff...
Author: Jacek Caban jacek@codeweavers.com Date: Wed Feb 20 15:20:51 2013 +0100
mshtml: Forward IHTMLDocument3::get_childNodes to IHTMLDOMNode implemnentation.
---
dlls/mshtml/htmldoc3.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmldoc3.c b/dlls/mshtml/htmldoc3.c index e1efa7a..4b9b12e 100644 --- a/dlls/mshtml/htmldoc3.c +++ b/dlls/mshtml/htmldoc3.c @@ -496,8 +496,10 @@ static HRESULT WINAPI HTMLDocument3_get_baseUrl(IHTMLDocument3 *iface, BSTR *p) static HRESULT WINAPI HTMLDocument3_get_childNodes(IHTMLDocument3 *iface, IDispatch **p) { 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,