Vijay Kiran Kamuju : dhtmled.ocx: Implement IViewObjectEx_GetViewStatus function.

Alexandre Julliard julliard at winehq.org
Fri Apr 9 14:53:19 CDT 2021


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

Author: Vijay Kiran Kamuju <infyquest at gmail.com>
Date:   Thu Apr  8 09:13:18 2021 +0200

dhtmled.ocx: Implement IViewObjectEx_GetViewStatus function.

Signed-off-by: Vijay Kiran Kamuju <infyquest at gmail.com>
Signed-off-by: Jacek Caban <jacek at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/dhtmled.ocx/edit.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/dlls/dhtmled.ocx/edit.c b/dlls/dhtmled.ocx/edit.c
index 37c585b8a64..9e08a4f5c95 100644
--- a/dlls/dhtmled.ocx/edit.c
+++ b/dlls/dhtmled.ocx/edit.c
@@ -1336,9 +1336,10 @@ static HRESULT WINAPI ViewObjectEx_GetViewStatus(IViewObjectEx *iface, DWORD *st
 {
     DHTMLEditImpl *This = impl_from_IViewObjectEx(iface);
 
-    FIXME("(%p)->(%p)\n", This, status);
+    TRACE("(%p)->(%p)\n", This, status);
 
-    return E_NOTIMPL;
+    *status = VIEWSTATUS_OPAQUE | VIEWSTATUS_SOLIDBKGND;
+    return S_OK;
 }
 
 static HRESULT WINAPI ViewObjectEx_QueryHitPoint(IViewObjectEx *iface, DWORD aspect, const RECT *bounds,




More information about the wine-cvs mailing list