(a bit better attempt to detect system encoding in absence of LANGINFO)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10164
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// try to see if it's in the environment variables
// (in most cases this won't work, but I was out of ideas)
wxChar *lang = wxGetenv(wxT("LC_ALL"));
// try to see if it's in the environment variables
// (in most cases this won't work, but I was out of ideas)
wxChar *lang = wxGetenv(wxT("LC_ALL"));
+ wxChar *dot = lang ? wxStrchr(lang, wxT('.')) : (wxChar *)NULL;
+ if (!dot)
+ {
lang = wxGetenv(wxT("LC_CTYPE"));
lang = wxGetenv(wxT("LC_CTYPE"));
+ dot = lang ? wxStrchr(lang, wxT('.')) : (wxChar *)NULL;
+ }
+ if (!dot)
+ {
lang = wxGetenv(wxT("LANG"));
lang = wxGetenv(wxT("LANG"));
- wxChar *dot = lang ? wxStrchr(lang, wxT('.')) : (wxChar *)NULL;
- if (dot)
+ dot = lang ? wxStrchr(lang, wxT('.')) : (wxChar *)NULL;
+ }
+ if (dot)