follow up parent chain to properly support modal dialog parents, see #15383

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2013-08-05 08:59:38 +00:00
parent d4d83a46a9
commit 71d9783779

View File

@ -658,7 +658,7 @@ long style, long extraStyle, const wxString& WXUNUSED(name) )
// If the parent is modal, windows with wxFRAME_FLOAT_ON_PARENT style need
// to be in kCGUtilityWindowLevel and not kCGFloatingWindowLevel to stay
// above the parent.
wxDialog * const parentDialog = wxDynamicCast(parent, wxDialog);
wxDialog * const parentDialog = parent == NULL ? NULL : wxDynamicCast(parent->MacGetTopLevelWindow(), wxDialog);
if (parentDialog && parentDialog->IsModal())
{
if (level == kCGFloatingWindowLevel)