Module: wine Branch: master Commit: cdcea0e8affa78f1c44bdab55076206324e26b8d URL: http://source.winehq.org/git/wine.git/?a=commit;h=cdcea0e8affa78f1c44bdab550...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Mon Aug 19 09:18:14 2013 +1000
mshtml: Implement IHTMLStorage GetTypeInfoCount.
---
dlls/mshtml/htmlstorage.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/dlls/mshtml/htmlstorage.c b/dlls/mshtml/htmlstorage.c index e0c4a53..544ab8a 100644 --- a/dlls/mshtml/htmlstorage.c +++ b/dlls/mshtml/htmlstorage.c @@ -95,8 +95,7 @@ static ULONG WINAPI HTMLStorage_Release(IHTMLStorage *iface) static HRESULT WINAPI HTMLStorage_GetTypeInfoCount(IHTMLStorage *iface, UINT *pctinfo) { HTMLStorage *This = impl_from_IHTMLStorage(iface); - FIXME("(%p)->(%p)\n", This, pctinfo); - return E_NOTIMPL; + return IDispatchEx_GetTypeInfoCount(&This->dispex.IDispatchEx_iface, pctinfo); }
static HRESULT WINAPI HTMLStorage_GetTypeInfo(IHTMLStorage *iface, UINT iTInfo,