make sure button clicks etc. on a popup window don't lead to a dismissal because their GetWindow()/parent = popup check didn't work

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74090 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2013-06-03 08:30:33 +00:00
parent 6332bf7fe8
commit e80711dd54

View File

@ -614,12 +614,14 @@ void wxWindowMac::OSXSimulateFocusEvents()
{
wxFocusEvent event( wxEVT_KILL_FOCUS, former->GetId());
event.SetEventObject(former);
event.SetWindow(this);
former->HandleWindowEvent(event) ;
}
{
wxFocusEvent event(wxEVT_SET_FOCUS, former->GetId());
event.SetEventObject(former);
event.SetWindow(this);
former->HandleWindowEvent(event);
}
}