MSHTML: Added OLEIVERB_UIACTIVATE handling

Jacek Caban jack at itma.pwr.wroc.pl
Tue May 24 04:51:45 CDT 2005


OLEIVERB_UIACTIVATE seams to be the same as OLEIVERB_SHOW.

Changelog:
    Added OLEIVERB_UIACTIVATE handling
-------------- next part --------------
Index: dlls/mshtml/oleobj.c
===================================================================
RCS file: /home/wine/wine/dlls/mshtml/oleobj.c,v
retrieving revision 1.3
diff -u -p -r1.3 oleobj.c
--- dlls/mshtml/oleobj.c	15 Apr 2005 16:12:45 -0000	1.3
+++ dlls/mshtml/oleobj.c	24 May 2005 09:45:57 -0000
@@ -143,7 +143,7 @@ static HRESULT WINAPI OleObject_DoVerb(I
 
     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;
     }


More information about the wine-patches mailing list