Skip to content
Snippets Groups Projects
Commit 3f46d3d6 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

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

parent 8cd1f719
No related branches found
No related tags found
No related merge requests found
......@@ -1197,10 +1197,10 @@ static HRESULT WINAPI OLEFontImpl_Invoke(
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;
}
/************************************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment