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

This commit is contained in:
Marcus Meissner 2001-07-22 23:03:55 +00:00 committed by Alexandre Julliard
parent 8cd1f719bc
commit 3f46d3d6a4
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
/************************************************************************