From: Vadim Zeitlin Date: Sun, 8 Jan 2006 12:09:03 +0000 (+0000) Subject: fixed check for Metrowerks mbstowcs(): check for __MSL__ X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/70e51d69185a2018d31193958c3660c0699cd988 fixed check for Metrowerks mbstowcs(): check for __MSL__ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36774 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/wxchar.h b/include/wx/wxchar.h index 5320075a0f..93d8a76918 100644 --- a/include/wx/wxchar.h +++ b/include/wx/wxchar.h @@ -400,7 +400,7 @@ So use our own replacements in both cases. */ - #if defined(__MWERKS__) + #if defined(__MWERKS__) && defined(__MSL__) #define wxNEED_WX_MBSTOWCS #endif