Commit 5c932f96 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Added OLEIVERB_UIACTIVATE implementation.

parent 4ee19c81
...@@ -325,6 +325,9 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, struct tag ...@@ -325,6 +325,9 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, struct tag
case OLEIVERB_SHOW: case OLEIVERB_SHOW:
TRACE("OLEIVERB_SHOW\n"); TRACE("OLEIVERB_SHOW\n");
return activate_ui(This, pActiveSite, hwndParent); return activate_ui(This, pActiveSite, hwndParent);
case OLEIVERB_UIACTIVATE:
TRACE("OLEIVERB_UIACTIVATE\n");
return activate_ui(This, pActiveSite, hwndParent);
case OLEIVERB_INPLACEACTIVATE: case OLEIVERB_INPLACEACTIVATE:
TRACE("OLEIVERB_INPLACEACTIVATE\n"); TRACE("OLEIVERB_INPLACEACTIVATE\n");
return activate_inplace(This, pActiveSite, hwndParent); return activate_inplace(This, pActiveSite, hwndParent);
......
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