shdocvw: Return S_OK in OnInPlaceDeactivate.
This commit is contained in:
parent
df3902e6c1
commit
ae2c061e8e
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue