shdocvw: Handle DISPID_AMBIENT_DLCONTROL case.

This commit is contained in:
Austin English 2009-06-22 01:39:20 -05:00 committed by Alexandre Julliard
parent b2bb4a2ca8
commit 583be32178
1 changed files with 3 additions and 0 deletions

View File

@ -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: