Jactry Zeng : riched20: Implement IRichEditOle::GetObjectCount.

Alexandre Julliard julliard at winehq.org
Mon Apr 16 15:26:25 CDT 2018


Module: wine
Branch: master
Commit: 2ab2c51df331de1e0796eb0b37b5a6d02b3d7a7d
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=2ab2c51df331de1e0796eb0b37b5a6d02b3d7a7d

Author: Jactry Zeng <jzeng at codeweavers.com>
Date:   Fri Apr 13 15:57:07 2018 +0800

riched20: Implement IRichEditOle::GetObjectCount.

Signed-off-by: Jactry Zeng <jzeng at codeweavers.com>
Signed-off-by: Huw Davies <huw at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/riched20/richole.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/riched20/richole.c b/dlls/riched20/richole.c
index ef985fe..6b2ef41 100644
--- a/dlls/riched20/richole.c
+++ b/dlls/riched20/richole.c
@@ -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




More information about the wine-cvs mailing list