Module: wine Branch: master Commit: e3527ef23b273a8dc51ae0f9cc887e6d2d724fc0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e3527ef23b273a8dc51ae0f9cc...
Author: Piotr Caban piotr@codeweavers.com Date: Thu Aug 25 15:25:35 2011 +0200
mshtml: Added HTMLDOMAttribute_get_nodeName implementation.
---
dlls/mshtml/htmlattr.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlattr.c b/dlls/mshtml/htmlattr.c index d5446c6..40b2de6 100644 --- a/dlls/mshtml/htmlattr.c +++ b/dlls/mshtml/htmlattr.c @@ -121,8 +121,10 @@ static HRESULT WINAPI HTMLDOMAttribute_Invoke(IHTMLDOMAttribute *iface, DISPID d static HRESULT WINAPI HTMLDOMAttribute_get_nodeName(IHTMLDOMAttribute *iface, BSTR *p) { HTMLDOMAttribute *This = impl_from_IHTMLDOMAttribute(iface); - FIXME("(%p)->(%p)\n", This, p); - return E_NOTIMPL; + + TRACE("(%p)->(%p)\n", This, p); + + return IDispatchEx_GetMemberName(&This->elem->node.dispex.IDispatchEx_iface, This->dispid, p); }
static HRESULT WINAPI HTMLDOMAttribute_put_nodeName(IHTMLDOMAttribute *iface, VARIANT v)