shdocvw: Handle DISPID_AMBIENT_DLCONTROL case.
This commit is contained in:
parent
b2bb4a2ca8
commit
583be32178
|
@ -28,6 +28,7 @@
|
||||||
#include "shdocvw.h"
|
#include "shdocvw.h"
|
||||||
#include "htiframe.h"
|
#include "htiframe.h"
|
||||||
#include "idispids.h"
|
#include "idispids.h"
|
||||||
|
#include "mshtmdid.h"
|
||||||
|
|
||||||
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
||||||
|
|
||||||
|
@ -723,6 +724,8 @@ static HRESULT WINAPI OleControl_OnAmbientPropertyChange(IOleControl *iface, DIS
|
||||||
* BUT the Webbrowser OleControl object doesn't appear to do this.
|
* BUT the Webbrowser OleControl object doesn't appear to do this.
|
||||||
*/
|
*/
|
||||||
return S_OK;
|
return S_OK;
|
||||||
|
case DISPID_AMBIENT_DLCONTROL:
|
||||||
|
return S_OK;
|
||||||
case DISPID_AMBIENT_OFFLINEIFNOTCONNECTED:
|
case DISPID_AMBIENT_OFFLINEIFNOTCONNECTED:
|
||||||
return on_offlineconnected_change(This);
|
return on_offlineconnected_change(This);
|
||||||
case DISPID_AMBIENT_SILENT:
|
case DISPID_AMBIENT_SILENT:
|
||||||
|
|
Loading…
Reference in New Issue