mshtml: Implement IHTMLStorage GetTypeInfoCount.

oldstable
Alistair Leslie-Hughes 2013-08-19 09:18:14 +10:00 committed by Alexandre Julliard
parent 4be4ad8278
commit cdcea0e8af
1 changed files with 1 additions and 2 deletions

View File

@ -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,