From 0af07cc24519a07e1948169568c979fea7465ce2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sat, 9 Feb 2008 10:39:08 +0000 Subject: [PATCH] fixed wxGTK assert when closing wxMessageDialog git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51612 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/gtk/dialog.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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