From d1f024a8de8872ae314b30e0d1b8c8a1b8518c3d Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 26 Sep 2005 01:02:14 +0000 Subject: [PATCH] fixed wide char codeset detection for systems which do support LE/BE variants (broken by recent commit) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35716 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/strconv.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index f70bec6390..080b2078a7 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -1365,7 +1365,7 @@ wxMBConv_iconv::wxMBConv_iconv(const wxChar *name) }; #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP - for ( ; *names; ++names ) + for ( ; *names && ms_wcCharsetName.empty(); ++names ) { const wxString nameCS(*names); -- 2.45.2