]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/appbase.cpp
fix for C99-compatible vsnprintf()
[wxWidgets.git] / src / common / appbase.cpp
index 9b7e921da874a3499ae7fcc6711a71f48e67e467..f19e5e4ce206e21bd243d8b98fd4f2130df252fa 100644 (file)
@@ -372,7 +372,7 @@ bool wxAppConsole::CheckBuildOptions(const char *optionsSignature,
         wxString progName = wxString::FromAscii(componentName);
         wxString msg;
         
-        msg.Printf(_T("Mismatch between the program and library build versions detected.\nThe library used %s, and %s used %s."),
+        msg.Printf(_T("Mismatch between the program and library build versions detected.\nThe library used %s,\nand %s used %s."),
                    lib.c_str(), progName.c_str(), prog.c_str());
         
         wxLogFatalError(msg);
@@ -392,7 +392,7 @@ void wxAppConsole::OnAssert(const wxChar *file,
                             const wxChar *cond,
                             const wxChar *msg)
 {
-    ShowAssertDialog(file, line, cond, msg, m_traits);
+    ShowAssertDialog(file, line, cond, msg, GetTraits());
 }
 
 #endif // __WXDEBUG__