mshtml: Added OLECMDID_COPY implementation.
This commit is contained in:
parent
1b698ccd59
commit
3f158bf29d
|
@ -355,8 +355,10 @@ static HRESULT exec_cut(HTMLDocument *This, DWORD nCmdexecopt, VARIANT *pvaIn, V
|
|||
|
||||
static HRESULT exec_copy(HTMLDocument *This, DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
|
||||
{
|
||||
FIXME("(%p)->(%d %p %p)\n", This, nCmdexecopt, pvaIn, pvaOut);
|
||||
return E_NOTIMPL;
|
||||
TRACE("(%p)->(%d %s %p)\n", This, nCmdexecopt, debugstr_variant(pvaIn), pvaOut);
|
||||
|
||||
do_ns_command(This, NSCMD_COPY, NULL);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
static HRESULT exec_paste(HTMLDocument *This, DWORD nCmdexecopt, VARIANT *pvaIn, VARIANT *pvaOut)
|
||||
|
|
Loading…
Reference in New Issue