Piotr Caban : msxml3: Add ISAXAttribute_getLength implementation.

Alexandre Julliard julliard at winehq.org
Thu Jul 31 07:17:55 CDT 2008


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

Author: Piotr Caban <piotr.caban at gmail.com>
Date:   Wed Jul 30 20:26:50 2008 +0200

msxml3: Add ISAXAttribute_getLength implementation.

---

 dlls/msxml3/saxreader.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c
index 62bfd9b..7c7e90f 100644
--- a/dlls/msxml3/saxreader.c
+++ b/dlls/msxml3/saxreader.c
@@ -245,8 +245,9 @@ static HRESULT WINAPI isaxattributes_getLength(
 {
     saxattributes *This = impl_from_ISAXAttributes( iface );
 
-    FIXME("(%p) stub\n", This);
-    return E_NOTIMPL;
+    *length = This->nb_attributes;
+    TRACE("Length set to %d\n", *length);
+    return S_OK;
 }
 
 static HRESULT WINAPI isaxattributes_getURI(




More information about the wine-cvs mailing list