]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appcmn.cpp
fixed unwanted owner data accesses in virtual list ctrl
[wxWidgets.git] / src / common / appcmn.cpp
index 3de3b7cd2be6e0b515ee7bdf7721bf20a94d9ea1..86a63a1090aae5f4c962fbbf844a6cb30168d5fd 100644 (file)
@@ -206,7 +206,7 @@ void wxAppBase::OnInitCmdLine(wxCmdLineParser& parser)
             OPTION_VERBOSE,
             gettext_noop("generate verbose log messages")
         },
-#endif wxUSE_LOG
+#endif // wxUSE_LOG
 
 #ifdef __WXUNIVERSAL__
         {
@@ -395,6 +395,9 @@ void ShowAssertDialog(const wxChar *szFile, int nLine, const wxChar *szMsg)
 // this function is called when an assert fails
 void wxOnAssert(const wxChar *szFile, int nLine, const wxChar *szMsg)
 {
+    wxMessageBox( "ttest", "test", wxOK );
+    return;
+    
     if ( !wxTheApp )
     {
         // by default, show the assert dialog box - we can't customize this