Module: wine Branch: refs/heads/master Commit: 00f249022cdc6ae6ec04be17dfafecb38c34ab74 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=00f249022cdc6ae6ec04be17...
Author: Jacek Caban jacek@codeweavers.com Date: Mon Feb 20 11:13:51 2006 +0100
shdocvw: Change FIXMEs to TRACE in IDispatch's methods as they return E_NOTIMPL in Windows as well.
---
dlls/shdocvw/client.c | 12 +++++++++--- 1 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/dlls/shdocvw/client.c b/dlls/shdocvw/client.c index 981132a..58ce558 100644 --- a/dlls/shdocvw/client.c +++ b/dlls/shdocvw/client.c @@ -370,7 +370,9 @@ static ULONG WINAPI ClDispatch_Release(I static HRESULT WINAPI ClDispatch_GetTypeInfoCount(IDispatch *iface, UINT *pctinfo) { WebBrowser *This = DISP_THIS(iface); - FIXME("(%p)->(%p)\n", This, pctinfo); + + TRACE("(%p)->(%p)\n", This, pctinfo); + return E_NOTIMPL; }
@@ -378,7 +380,9 @@ static HRESULT WINAPI ClDispatch_GetType ITypeInfo **ppTInfo) { 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; }
@@ -386,8 +390,10 @@ static HRESULT WINAPI ClDispatch_GetIDsO UINT cNames, LCID lcid, DISPID *rgDispId) { 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); + return E_NOTIMPL; }