Commit 0a2008ae authored by Chris Wulff's avatar Chris Wulff Committed by Alexandre Julliard

shdocvw: Implement OLEIVERB_HIDE.

parent ea7ab4da
......@@ -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;
......
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