msxml3: Make xmlnode_get_parsed a stub.
authorAndré Hentschel <nerv@dawncrow.de>
Tue, 30 Mar 2010 17:56:27 +0000 (19:56 +0200)
committerAlexandre Julliard <julliard@winehq.org>
Wed, 31 Mar 2010 09:47:19 +0000 (11:47 +0200)
dlls/msxml3/node.c

index d628b13da27c1bf7f95e369e02d8992702cf699d..9106a9f6e5f2c8df650fddac1ce35162346a93ea 100644 (file)
@@ -1548,8 +1548,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(