Nikolay Sivov : msxml3: Fix return values for some methods needed by SAX reader.

Alexandre Julliard julliard at winehq.org
Wed Mar 5 14:12:31 CST 2014


Module: wine
Branch: master
Commit: 3cce31b1324513c7f2d6c9d4ba5fe9e5ca7cf834
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3cce31b1324513c7f2d6c9d4ba5fe9e5ca7cf834

Author: Nikolay Sivov <nsivov at codeweavers.com>
Date:   Wed Mar  5 10:40:20 2014 +0400

msxml3: Fix return values for some methods needed by SAX reader.

---

 dlls/msxml3/mxwriter.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dlls/msxml3/mxwriter.c b/dlls/msxml3/mxwriter.c
index d38e837..a0c2a2b 100644
--- a/dlls/msxml3/mxwriter.c
+++ b/dlls/msxml3/mxwriter.c
@@ -1155,8 +1155,8 @@ static HRESULT WINAPI SAXContentHandler_startPrefixMapping(
     int nuri)
 {
     mxwriter *This = impl_from_ISAXContentHandler( iface );
-    FIXME("(%p)->(%s %s)\n", This, debugstr_wn(prefix, nprefix), debugstr_wn(uri, nuri));
-    return E_NOTIMPL;
+    TRACE("(%p)->(%s %s)\n", This, debugstr_wn(prefix, nprefix), debugstr_wn(uri, nuri));
+    return S_OK;
 }
 
 static HRESULT WINAPI SAXContentHandler_endPrefixMapping(
@@ -1165,8 +1165,8 @@ static HRESULT WINAPI SAXContentHandler_endPrefixMapping(
     int nprefix)
 {
     mxwriter *This = impl_from_ISAXContentHandler( iface );
-    FIXME("(%p)->(%s)\n", This, debugstr_wn(prefix, nprefix));
-    return E_NOTIMPL;
+    TRACE("(%p)->(%s)\n", This, debugstr_wn(prefix, nprefix));
+    return S_OK;
 }
 
 static HRESULT WINAPI SAXContentHandler_startElement(
@@ -2007,8 +2007,8 @@ static HRESULT WINAPI VBSAXContentHandler_Invoke(IVBSAXContentHandler *iface, DI
 static HRESULT WINAPI VBSAXContentHandler_putref_documentLocator(IVBSAXContentHandler *iface, IVBSAXLocator *locator)
 {
     mxwriter *This = impl_from_IVBSAXContentHandler( iface );
-    FIXME("(%p)->(%p): stub\n", This, locator);
-    return E_NOTIMPL;
+    TRACE("(%p)->(%p)\n", This, locator);
+    return S_OK;
 }
 
 static HRESULT WINAPI VBSAXContentHandler_startDocument(IVBSAXContentHandler *iface)




More information about the wine-cvs mailing list