git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@67766
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// provide a behavior consistent across ports.
// - OSX : I receive an event for new frames opened with HTML target, and
// currently block them all.
- // - IE : The DISPID_NEWWINDOW2 event looks like it should work, but I
- // receive way too many of them. A new IE instance opens.
+ // - IE : An event is recieved for new frames and they are currently
+ // blocked
// - GTK : All frame open requests are blocked. A slot exists that I could
// connect to to be notified if ever needed
{
m_canNavigateForward = enable;
}
+ break;
}
-
- /*
case DISPID_NEWWINDOW2:
- //case DISPID_NEWWINDOW3:
{
- wxLogMessage("DISPID_NEWWINDOW2\n");
wxActiveXEventNativeMSW* nativeParams = evt.GetNativeParameters();
// Cancel the attempt to open a new window
*V_BOOLREF(&nativeParams->pDispParams->rgvarg[0]) = VARIANT_TRUE;
- }*/
+ break;
+ }
}
evt.Skip();