From 2762486b35410daeed8c6f37c37a4bdf09b610e8 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 8 Nov 2005 20:00:58 +0000 Subject: [PATCH] Fixed typo: get_doctype returns an IXMLDOMDocumentType. --- include/xmldom.idl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xmldom.idl b/include/xmldom.idl index e8ca234415e..7d993d58a9b 100644 --- a/include/xmldom.idl +++ b/include/xmldom.idl @@ -202,7 +202,7 @@ pointer_default(unique) interface IXMLDOMDocument : IXMLDOMNode { [propget, id(DISPID_DOM_DOCUMENT_DOCTYPE)] - HRESULT doctype( [out,retval] IXMLDOMDocument **documentType ); + HRESULT doctype( [out,retval] IXMLDOMDocumentType **documentType ); [propget, id(DISPID_DOM_DOCUMENT_IMPLEMENTATION)] HRESULT implementation( [out,retval] IXMLDOMImplementation **impl );