shdocvw: Implement OLEIVERB_HIDE.
This commit is contained in:
parent
ea7ab4da66
commit
0a2008ae67
|
@ -416,6 +416,11 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, struct tag
|
|||
case OLEIVERB_INPLACEACTIVATE:
|
||||
TRACE("OLEIVERB_INPLACEACTIVATE\n");
|
||||
return activate_inplace(This, pActiveSite);
|
||||
case OLEIVERB_HIDE:
|
||||
TRACE("OLEIVERB_HIDE\n");
|
||||
if(This->doc_host.hwnd)
|
||||
ShowWindow(This->doc_host.hwnd, SW_HIDE);
|
||||
return S_OK;
|
||||
default:
|
||||
FIXME("stub for %d\n", iVerb);
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue