http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d3d2f4a
)
msxml3: Make xmlnode_get_parsed a stub.
author
André Hentschel
<nerv@dawncrow.de>
Tue, 30 Mar 2010 17:56:27 +0000
(19:56 +0200)
committer
Alexandre Julliard
<julliard@winehq.org>
Wed, 31 Mar 2010 09:47:19 +0000
(11:47 +0200)
dlls/msxml3/node.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/msxml3/node.c
b/dlls/msxml3/node.c
index d628b13da27c1bf7f95e369e02d8992702cf699d..9106a9f6e5f2c8df650fddac1ce35162346a93ea 100644
(file)
--- a/
dlls/msxml3/node.c
+++ b/
dlls/msxml3/node.c
@@
-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(