removed no longer needed wxOKlibc() helper
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53239 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -39,9 +39,6 @@ inline bool wxIsEmpty(const wxString& s) { return s.empty(); }
|
|||||||
inline bool wxIsEmpty(const wxCStrData& s) { return s.AsString().empty(); }
|
inline bool wxIsEmpty(const wxCStrData& s) { return s.AsString().empty(); }
|
||||||
|
|
||||||
|
|
||||||
// FIXME-UTF8: get rid of this, it's ANSI only anyway
|
|
||||||
WXDLLIMPEXP_BASE bool wxOKlibc(); /* for internal use */
|
|
||||||
|
|
||||||
|
|
||||||
/* multibyte to wide char conversion functions and macros */
|
/* multibyte to wide char conversion functions and macros */
|
||||||
|
|
||||||
|
@@ -133,27 +133,6 @@ WXDLLIMPEXP_BASE size_t wxWC2MB(char *buf, const wchar_t *pwz, size_t n)
|
|||||||
}
|
}
|
||||||
#endif // wxUSE_WCHAR_T
|
#endif // wxUSE_WCHAR_T
|
||||||
|
|
||||||
WXDLLIMPEXP_BASE bool wxOKlibc()
|
|
||||||
{
|
|
||||||
#if wxUSE_WCHAR_T && defined(__UNIX__) && defined(__GLIBC__) && !defined(__WINE__)
|
|
||||||
// glibc 2.0 uses UTF-8 even when it shouldn't
|
|
||||||
wchar_t res = 0;
|
|
||||||
if ((MB_CUR_MAX == 2) &&
|
|
||||||
(wxMB2WC(&res, "\xdd\xa5", 1) == 1) &&
|
|
||||||
(res==0x765)) {
|
|
||||||
// this is UTF-8 allright, check whether that's what we want
|
|
||||||
char *cur_locale = setlocale(LC_CTYPE, NULL);
|
|
||||||
if ((strlen(cur_locale) < 4) ||
|
|
||||||
(strcasecmp(cur_locale + strlen(cur_locale) - 4, "utf8")) ||
|
|
||||||
(strcasecmp(cur_locale + strlen(cur_locale) - 5, "utf-8"))) {
|
|
||||||
// nope, don't use libc conversion
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
char* wxSetlocale(int category, const char *locale)
|
char* wxSetlocale(int category, const char *locale)
|
||||||
{
|
{
|
||||||
#ifdef __WXWINCE__
|
#ifdef __WXWINCE__
|
||||||
|
@@ -364,14 +364,8 @@ bool wxApp::Initialize(int& argc_, wxChar **argv_)
|
|||||||
}
|
}
|
||||||
#endif // wxUSE_THREADS
|
#endif // wxUSE_THREADS
|
||||||
|
|
||||||
// We should have the wxUSE_WCHAR_T test on the _outside_
|
|
||||||
#if wxUSE_WCHAR_T
|
|
||||||
// gtk+ 2.0 supports Unicode through UTF-8 strings
|
// gtk+ 2.0 supports Unicode through UTF-8 strings
|
||||||
wxConvCurrent = &wxConvUTF8;
|
wxConvCurrent = &wxConvUTF8;
|
||||||
#else // !wxUSE_WCHAR_T
|
|
||||||
if (!wxOKlibc())
|
|
||||||
wxConvCurrent = (wxMBConv*) NULL;
|
|
||||||
#endif // wxUSE_WCHAR_T/!wxUSE_WCHAR_T
|
|
||||||
|
|
||||||
// decide which conversion to use for the file names
|
// decide which conversion to use for the file names
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user