shdocvw: Implement OLEIVERB_HIDE.

This commit is contained in:
Chris Wulff 2007-10-30 23:46:36 -04:00 committed by Alexandre Julliard
parent ea7ab4da66
commit 0a2008ae67
1 changed files with 5 additions and 0 deletions

View File

@ -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;