From 655155feb810bda6e42f663a9fead83cf53f2910 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Wed, 20 Aug 2008 18:31:39 +0200 Subject: [PATCH] msxml3: Add ISAXAttributes_getValueFromQName implementation. --- dlls/msxml3/saxreader.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dlls/msxml3/saxreader.c b/dlls/msxml3/saxreader.c index 64ad0b1199d..7affb4a1aa4 100644 --- a/dlls/msxml3/saxreader.c +++ b/dlls/msxml3/saxreader.c @@ -859,10 +859,15 @@ static HRESULT WINAPI isaxattributes_getValueFromQName( const WCHAR **pValue, int *nValue) { + HRESULT hr; + int index; saxattributes *This = impl_from_ISAXAttributes( iface ); + TRACE("(%p)->(%s, %d)\n", This, debugstr_w(pQName), nQName); - FIXME("(%p)->(%s, %d) stub\n", This, debugstr_w(pQName), nQName); - return E_NOTIMPL; + hr = ISAXAttributes_getIndexFromQName(iface, pQName, nQName, &index); + if(hr==S_OK) hr = ISAXAttributes_getValue(iface, index, pValue, nValue); + + return hr; } static const struct ISAXAttributesVtbl isaxattributes_vtbl = -- 2.11.4.GIT