Commit ae2c061e authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

shdocvw: Return S_OK in OnInPlaceDeactivate.

parent df3902e6
...@@ -246,8 +246,11 @@ static HRESULT WINAPI InPlaceSite_OnUIDeactivate(IOleInPlaceSite *iface, BOOL fU ...@@ -246,8 +246,11 @@ static HRESULT WINAPI InPlaceSite_OnUIDeactivate(IOleInPlaceSite *iface, BOOL fU
static HRESULT WINAPI InPlaceSite_OnInPlaceDeactivate(IOleInPlaceSite *iface) static HRESULT WINAPI InPlaceSite_OnInPlaceDeactivate(IOleInPlaceSite *iface)
{ {
DocHost *This = INPLACESITE_THIS(iface); DocHost *This = INPLACESITE_THIS(iface);
FIXME("(%p)\n", This);
return E_NOTIMPL; TRACE("(%p)\n", This);
/* Nothing to do here */
return S_OK;
} }
static HRESULT WINAPI InPlaceSite_DiscardUndoState(IOleInPlaceSite *iface) static HRESULT WINAPI InPlaceSite_DiscardUndoState(IOleInPlaceSite *iface)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment