mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
msxml3: Use common helper for IXMLDOMText_get_nodeValue().
This commit is contained in:
parent
5afb829fdc
commit
a1d9fa11d3
@ -171,12 +171,7 @@ static HRESULT WINAPI domtext_get_nodeValue(
|
||||
|
||||
TRACE("(%p)->(%p)\n", This, value);
|
||||
|
||||
if(!value)
|
||||
return E_INVALIDARG;
|
||||
|
||||
V_VT(value) = VT_BSTR;
|
||||
V_BSTR(value) = bstr_from_xmlChar(This->node.node->content);
|
||||
return S_OK;
|
||||
return node_get_content(&This->node, value);
|
||||
}
|
||||
|
||||
static HRESULT WINAPI domtext_put_nodeValue(
|
||||
|
Loading…
Reference in New Issue
Block a user