fixed wxUniv's wxDialog::ShowModal() to use GetParentForModalDialog()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50750 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -175,7 +175,7 @@ int wxDialog::ShowModal()
|
|||||||
// forbidden
|
// forbidden
|
||||||
if ( !GetParent() && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
|
if ( !GetParent() && !(GetWindowStyleFlag() & wxDIALOG_NO_PARENT) )
|
||||||
{
|
{
|
||||||
wxWindow *parent = wxTheApp->GetTopWindow();
|
wxWindow * const parent = GetParentForModalDialog();
|
||||||
if ( parent && parent != this )
|
if ( parent && parent != this )
|
||||||
{
|
{
|
||||||
m_parent = parent;
|
m_parent = parent;
|
||||||
|
Reference in New Issue
Block a user