riched20: Implement IRichEditOle::GetObjectCount.

Signed-off-by: Jactry Zeng <jzeng@codeweavers.com>
Signed-off-by: Huw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Jactry Zeng 2018-04-13 15:57:07 +08:00 committed by Alexandre Julliard
parent 0154b59c7e
commit 2ab2c51df3
1 changed files with 2 additions and 2 deletions

View File

@ -1379,8 +1379,8 @@ static LONG WINAPI
IRichEditOle_fnGetObjectCount(IRichEditOle *me)
{
IRichEditOleImpl *This = impl_from_IRichEditOle(me);
FIXME("stub %p\n",This);
return 0;
TRACE("(%p)\n",This);
return list_count(&This->editor->reobj_list);
}
static HRESULT WINAPI