Commit 8900609d authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

ieframe: Silence some noisy FIXMEs.

parent ceb57b78
...@@ -655,13 +655,13 @@ static HRESULT WINAPI ClOleCommandTarget_QueryStatus(IOleCommandTarget *iface, ...@@ -655,13 +655,13 @@ static HRESULT WINAPI ClOleCommandTarget_QueryStatus(IOleCommandTarget *iface,
const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds[], OLECMDTEXT *pCmdText) const GUID *pguidCmdGroup, ULONG cCmds, OLECMD prgCmds[], OLECMDTEXT *pCmdText)
{ {
DocHost *This = impl_from_IOleCommandTarget(iface); DocHost *This = impl_from_IOleCommandTarget(iface);
ULONG i= 0; ULONG i;
FIXME("(%p)->(%s %u %p %p)\n", This, debugstr_guid(pguidCmdGroup), cCmds, prgCmds,
TRACE("(%p)->(%s %u %p %p)\n", This, debugstr_guid(pguidCmdGroup), cCmds, prgCmds,
pCmdText); pCmdText);
while (prgCmds && (cCmds > i)) { for(i=0; prgCmds && i < cCmds; i++)
FIXME("command_%u: %u, 0x%x\n", i, prgCmds[i].cmdID, prgCmds[i].cmdf); TRACE("unsupported command %u (%x)\n", prgCmds[i].cmdID, prgCmds[i].cmdf);
i++;
}
return E_NOTIMPL; return E_NOTIMPL;
} }
...@@ -690,7 +690,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, ...@@ -690,7 +690,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
notify_download_state(This, V_I4(pvaIn)); notify_download_state(This, V_I4(pvaIn));
return S_OK; return S_OK;
default: default:
FIXME("Unimplemented cmdid %d\n", nCmdID); TRACE("Unimplemented cmdid %d\n", nCmdID);
return E_NOTIMPL; return E_NOTIMPL;
} }
} }
...@@ -742,7 +742,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, ...@@ -742,7 +742,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
} }
default: default:
FIXME("unsupported command %d of CGID_DocHostCmdPriv\n", nCmdID); TRACE("unsupported command %d of CGID_DocHostCmdPriv\n", nCmdID);
return E_NOTIMPL; return E_NOTIMPL;
} }
} }
...@@ -755,7 +755,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, ...@@ -755,7 +755,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
return S_OK; return S_OK;
default: default:
FIXME("Unimplemented cmdid %d of CGID_Explorer\n", nCmdID); TRACE("Unimplemented cmdid %d of CGID_Explorer\n", nCmdID);
return E_NOTIMPL; return E_NOTIMPL;
} }
} }
...@@ -763,7 +763,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, ...@@ -763,7 +763,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
if(IsEqualGUID(pguidCmdGroup, &CGID_ShellDocView)) { if(IsEqualGUID(pguidCmdGroup, &CGID_ShellDocView)) {
switch(nCmdID) { switch(nCmdID) {
default: default:
FIXME("Unimplemented cmdid %d of CGID_ShellDocView\n", nCmdID); TRACE("Unimplemented cmdid %d of CGID_ShellDocView\n", nCmdID);
return E_NOTIMPL; return E_NOTIMPL;
} }
} }
...@@ -774,7 +774,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface, ...@@ -774,7 +774,7 @@ static HRESULT WINAPI ClOleCommandTarget_Exec(IOleCommandTarget *iface,
return IOleCommandTarget_Exec(This->olecmd, pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut); return IOleCommandTarget_Exec(This->olecmd, pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut);
} }
FIXME("Unimplemented cmdid %d of group %s\n", nCmdID, debugstr_guid(pguidCmdGroup)); TRACE("Unimplemented cmdid %d of group %s\n", nCmdID, debugstr_guid(pguidCmdGroup));
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