Jacek Caban : mshtml: Forward IHTMLDocument3:: get_childNodes to IHTMLDOMNode implemnentation.

Alexandre Julliard julliard at winehq.org
Wed Feb 20 14:01:14 CST 2013


Module: wine
Branch: master
Commit: c2cfc4cf8b25a2ac3f155725ffffdbcf806282cc
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c2cfc4cf8b25a2ac3f155725ffffdbcf806282cc

Author: Jacek Caban <jacek at 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,




More information about the wine-cvs mailing list