msxml3: Use common helper for IXMLDOMText_get_nodeValue().

This commit is contained in:
Nikolay Sivov 2011-11-27 20:24:52 +03:00 committed by Alexandre Julliard
parent 5afb829fdc
commit a1d9fa11d3
1 changed files with 1 additions and 6 deletions

View File

@ -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(