Forward some IXMLDOMDocument methods to the implemenation's contained

node.
This commit is contained in:
Mike McCormack 2005-08-19 11:23:02 +00:00 committed by Alexandre Julliard
parent dc2e14d9f6
commit eb889cf5d9

View file

@ -154,8 +154,8 @@ static HRESULT WINAPI domdoc_get_nodeName(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
BSTR* name ) BSTR* name )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_nodeName( This->node, name );
} }
@ -163,8 +163,8 @@ static HRESULT WINAPI domdoc_get_nodeValue(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT* value ) VARIANT* value )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_nodeValue( This->node, value );
} }
@ -172,8 +172,8 @@ static HRESULT WINAPI domdoc_put_nodeValue(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
VARIANT value) VARIANT value)
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_put_nodeValue( This->node, value );
} }
@ -181,8 +181,8 @@ static HRESULT WINAPI domdoc_get_nodeType(
IXMLDOMDocument *iface, IXMLDOMDocument *iface,
DOMNodeType* type ) DOMNodeType* type )
{ {
FIXME("\n"); domdoc *This = impl_from_IXMLDOMDocument( iface );
return E_NOTIMPL; return IXMLDOMNode_get_nodeType( This->node, type );
} }