From 5c7a8a092ae1d960dda0dcaf00b3d6d5a19cee99 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Thu, 16 Mar 2006 18:59:12 +0000 Subject: [PATCH] wxMotif/ANSI can't cope with UTF-8 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38151 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/intl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/intl.cpp b/src/common/intl.cpp index 459f3189d6..8d11807aec 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -2395,7 +2395,7 @@ wxFontEncoding wxLocale::GetSystemEncoding() // on some modern Linux systems (RedHat 8) the default system locale // is UTF8 -- but it isn't supported by wxGTK in ANSI build at all so // don't even try to use it in this case -#if !wxUSE_UNICODE && defined(__WXGTK__) +#if !wxUSE_UNICODE && (defined(__WXGTK__) || defined(__WXMOTIF__)) if ( enc == wxFONTENCODING_UTF8 ) { // the most similar supported encoding... -- 2.45.2