]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dialog.cpp
fixing file paths after renaming
[wxWidgets.git] / src / gtk / dialog.cpp
index fe9a0036c2ccfc19736164db2c7bdc283f220439..c70813d55755b7da1ccdee9223032d091a3111a8 100644 (file)
@@ -66,13 +66,26 @@ bool wxDialog::Show( bool show )
         EndModal( wxID_CANCEL );
     }
 
-    bool ret = wxWindow::Show( show );
+    if (show && CanDoLayoutAdaptation())
+        DoLayoutAdaptation();
 
-    if (show) InitDialog();
+    bool ret = wxDialogBase::Show(show);
+
+    if (show)
+        InitDialog();
 
     return ret;
 }
 
+wxDialog::~wxDialog()
+{
+    m_isBeingDeleted = true;
+
+    // if the dialog is modal, this will end its event loop
+    if ( IsModal() )
+        EndModal(wxID_CANCEL);
+}
+
 bool wxDialog::IsModal() const
 {
     return m_modalShowing;
@@ -136,7 +149,7 @@ void wxDialog::EndModal( int retCode )
 
     if (!IsModal())
     {
-        wxFAIL_MSG( wxT("wxDialog:EndModal called twice") );
+        wxFAIL_MSG( "either wxDialog:EndModal called twice or ShowModal wasn't called" );
         return;
     }