msxml3: Remove unneeded cast to xmlDocPtr.

This commit is contained in:
Nikolay Sivov 2013-02-28 22:44:02 +04:00 committed by Alexandre Julliard
parent 64c6c08e08
commit a935a44b44
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ HRESULT xmldoc_remove_orphan(xmlDocPtr doc, xmlNodePtr node)
static inline xmlDocPtr get_doc( domdoc *This )
{
return (xmlDocPtr)This->node.node;
return This->node.node->doc;
}
static HRESULT attach_xmldoc(domdoc *This, xmlDocPtr xml )