]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
fixed missing semicolons, as reported by check_syntax.sh
[wxWidgets.git] / src / common / log.cpp
index 9cdf13a271914e3ec106bd6cfad99d9cb66a4b50..d6041c195e3561519e43bb47a8af3f23ddc052fc 100644 (file)
@@ -183,7 +183,7 @@ IMPLEMENT_LOG_FUNCTION(Status)
 void wxSafeShowMessage(const wxString& title, const wxString& text)
 {
 #ifdef __WINDOWS__
-    ::MessageBox(NULL, text.wx_str(), title.wx_str(), MB_OK | MB_ICONSTOP);
+    ::MessageBox(NULL, text.t_str(), title.t_str(), MB_OK | MB_ICONSTOP);
 #else
     wxFprintf(stderr, wxS("%s: %s\n"), title.c_str(), text.c_str());
     fflush(stderr);