From: Włodzimierz Skiba Date: Tue, 18 May 2004 12:22:34 +0000 (+0000) Subject: Fix to wxChar* access. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/095d49f2faa766ad00159fe9d75c7661039fece1?ds=inline Fix to wxChar* access. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27334 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/appbase.cpp b/src/common/appbase.cpp index d479bef6e1..81088e7908 100644 --- a/src/common/appbase.cpp +++ b/src/common/appbase.cpp @@ -410,7 +410,7 @@ bool wxAppConsole::CheckBuildOptions(const char *optionsSignature, 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); + wxLogFatalError(msg.c_str()); // normally wxLogFatalError doesn't return return FALSE;