Module: wine Branch: master Commit: ed5bf860381d7166833e788c22bfc1e183091c97 URL: https://source.winehq.org/git/wine.git/?a=commit;h=ed5bf860381d7166833e788c2...
Author: Vijay Kiran Kamuju infyquest@gmail.com Date: Thu Apr 8 09:13:18 2021 +0200
dhtmled.ocx: Implement IViewObjectEx_GetViewStatus function.
Signed-off-by: Vijay Kiran Kamuju infyquest@gmail.com Signed-off-by: Jacek Caban jacek@codeweavers.com Signed-off-by: Alexandre Julliard julliard@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,