From: Václav Slavík Date: Sat, 9 Feb 2008 10:39:08 +0000 (+0000) Subject: fixed wxGTK assert when closing wxMessageDialog X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/0af07cc24519a07e1948169568c979fea7465ce2 fixed wxGTK assert when closing wxMessageDialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51612 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/dialog.cpp b/src/gtk/dialog.cpp index 8a087ecae6..ebc4506665 100644 --- a/src/gtk/dialog.cpp +++ b/src/gtk/dialog.cpp @@ -82,7 +82,8 @@ wxDialog::~wxDialog() m_isBeingDeleted = true; // if the dialog is modal, this will end its event loop - Show(false); + if ( IsModal() ) + EndModal(wxID_CANCEL); } bool wxDialog::IsModal() const