Commit 00f24902 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Change FIXMEs to TRACE in IDispatch's methods as they return

E_NOTIMPL in Windows as well.
parent 74661690
...@@ -370,7 +370,9 @@ static ULONG WINAPI ClDispatch_Release(IDispatch *iface) ...@@ -370,7 +370,9 @@ static ULONG WINAPI ClDispatch_Release(IDispatch *iface)
static HRESULT WINAPI ClDispatch_GetTypeInfoCount(IDispatch *iface, UINT *pctinfo) static HRESULT WINAPI ClDispatch_GetTypeInfoCount(IDispatch *iface, UINT *pctinfo)
{ {
WebBrowser *This = DISP_THIS(iface); WebBrowser *This = DISP_THIS(iface);
FIXME("(%p)->(%p)\n", This, pctinfo);
TRACE("(%p)->(%p)\n", This, pctinfo);
return E_NOTIMPL; return E_NOTIMPL;
} }
...@@ -378,7 +380,9 @@ static HRESULT WINAPI ClDispatch_GetTypeInfo(IDispatch *iface, UINT iTInfo, LCID ...@@ -378,7 +380,9 @@ static HRESULT WINAPI ClDispatch_GetTypeInfo(IDispatch *iface, UINT iTInfo, LCID
ITypeInfo **ppTInfo) ITypeInfo **ppTInfo)
{ {
WebBrowser *This = DISP_THIS(iface); WebBrowser *This = DISP_THIS(iface);
FIXME("(%p)->(%u %ld %p)\n", This, iTInfo, lcid, ppTInfo);
TRACE("(%p)->(%u %ld %p)\n", This, iTInfo, lcid, ppTInfo);
return E_NOTIMPL; return E_NOTIMPL;
} }
...@@ -386,8 +390,10 @@ static HRESULT WINAPI ClDispatch_GetIDsOfNames(IDispatch *iface, REFIID riid, LP ...@@ -386,8 +390,10 @@ static HRESULT WINAPI ClDispatch_GetIDsOfNames(IDispatch *iface, REFIID riid, LP
UINT cNames, LCID lcid, DISPID *rgDispId) UINT cNames, LCID lcid, DISPID *rgDispId)
{ {
WebBrowser *This = DISP_THIS(iface); WebBrowser *This = DISP_THIS(iface);
FIXME("(%p)->(%s %p %u %ld %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
TRACE("(%p)->(%s %p %u %ld %p)\n", This, debugstr_guid(riid), rgszNames, cNames,
lcid, rgDispId); lcid, rgDispId);
return E_NOTIMPL; return E_NOTIMPL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment