[2/3] msxml3: Make xmlnode_get_parsed a stub

André Hentschel nerv at dawncrow.de
Tue Mar 30 12:56:27 CDT 2010


VB6 apps just crash if they try to use such a property, so its better to fake a return value
---
 dlls/msxml3/node.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index 884ee51..bf3452d 100644
--- a/dlls/msxml3/node.c
+++ b/dlls/msxml3/node.c
@@ -1550,8 +1550,9 @@ static HRESULT WINAPI xmlnode_get_parsed(
     VARIANT_BOOL* isParsed)
 {
     xmlnode *This = impl_from_IXMLDOMNode( iface );
-    FIXME("(%p)->(%p)\n", This, isParsed);
-    return E_NOTIMPL;
+    FIXME("(%p)->(%p) stub!\n", This, isParsed);
+    *isParsed = VARIANT_TRUE;
+    return S_OK;
 }
 
 static HRESULT WINAPI xmlnode_get_namespaceURI(
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list