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>
This commit is contained in:
parent
0dbe8346ee
commit
ed5bf86038
|
@ -1336,9 +1336,10 @@ static HRESULT WINAPI ViewObjectEx_GetViewStatus(IViewObjectEx *iface, DWORD *st
|
||||||
{
|
{
|
||||||
DHTMLEditImpl *This = impl_from_IViewObjectEx(iface);
|
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,
|
static HRESULT WINAPI ViewObjectEx_QueryHitPoint(IViewObjectEx *iface, DWORD aspect, const RECT *bounds,
|
||||||
|
|
Loading…
Reference in New Issue