]> git.saurik.com Git - wxWidgets.git/commitdiff
Added assert (WinCE doesn't report checked status correctly)
authorJulian Smart <julian@anthemion.co.uk>
Wed, 16 Feb 2005 14:44:15 +0000 (14:44 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Wed, 16 Feb 2005 14:44:15 +0000 (14:44 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32094 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/dialogs/dialogs.cpp

index 8e551bdc64fa5baa2ba5eeef9d7fe50432a332a8..fecd4b0ec3079131cb6f78bb4940dc016fe7a22a 100644 (file)
@@ -905,7 +905,14 @@ void MyFrame::ModelessDlg(wxCommandEvent& event)
     }
     else // hide
     {
-        m_dialog->Hide();
+        // If m_dialog is NULL, then possibly the system
+        // didn't report the checked menu item status correctly.
+        // It should be true just after the menu item was selected,
+        // if there was no modeless dialog yet.
+
+        wxASSERT( m_dialog != NULL );
+        if (m_dialog)
+            m_dialog->Hide();
     }
 }
 #endif // USE_MODAL_PRESENTATION