Commit 3f46d3d6 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

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

parent 8cd1f719
...@@ -1197,10 +1197,10 @@ static HRESULT WINAPI OLEFontImpl_Invoke( ...@@ -1197,10 +1197,10 @@ static HRESULT WINAPI OLEFontImpl_Invoke(
UINT* puArgErr) UINT* puArgErr)
{ {
_ICOM_THIS_From_IDispatch(IFont, iface); _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 wFlags
); );
return E_NOTIMPL; return S_OK;
} }
/************************************************************************ /************************************************************************
......
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