Added OLEIVERB_UIACTIVATE handling.

This commit is contained in:
Jacek Caban 2005-05-24 11:44:26 +00:00 committed by Alexandre Julliard
parent 03a7022ef8
commit e94f091d3b

View File

@ -143,7 +143,7 @@ static HRESULT WINAPI OleObject_DoVerb(IOleObject *iface, LONG iVerb, LPMSG lpms
TRACE("(%p)->(%ld %p %p %ld %p %p)\n", This, iVerb, lpmsg, pActiveSite, lindex, hwndParent, lprcPosRect);
if(iVerb != OLEIVERB_SHOW) {
if(iVerb != OLEIVERB_SHOW && iVerb != OLEIVERB_UIACTIVATE) {
FIXME("iVerb = %ld not supported\n", iVerb);
return E_NOTIMPL;
}