PATCH: olefont::invoke

Marcus Meissner marcus at jet.franken.de
Fri Jul 20 12:58:09 CDT 2001


Hi,

This is the first fix for the VB5 supplied installer (to get my cellphone
config program running).

Ciao, Marcus

Changelog:
	OleFont::IDispatch::Invoke stub can just return S_OK.

Index: olefont.c
===================================================================
RCS file: /home/wine/wine/dlls/oleaut32/olefont.c,v
retrieving revision 1.9
diff -u -r1.9 olefont.c
--- olefont.c	2001/07/14 00:47:52	1.9
+++ olefont.c	2001/07/20 18:44:12
@@ -1197,10 +1197,10 @@
   UINT*     puArgErr)
 {
   _ICOM_THIS_From_IDispatch(IFont, iface);
-  FIXME("%p->(%ld,%s,%lx,%x):Stub\n", this,dispIdMember,debugstr_guid(riid),lcid,
+  FIXME("%p->(%ld,%s,%lx,%x), stub!\n", this,dispIdMember,debugstr_guid(riid),lcid,
     wFlags
   );
-  return E_NOTIMPL;
+  return S_OK;
 }
 
 /************************************************************************




More information about the wine-patches mailing list