From: Michael Wetherell Date: Wed, 30 Mar 2005 22:00:19 +0000 (+0000) Subject: Fix for decoding of utf-16 surrogates. Also remove #include that's not needed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/cdb14ecbe7fdf65f6c2dfd4b98526feb7813ddf9 Fix for decoding of utf-16 surrogates. Also remove #include that's not needed after all. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33205 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index a43f43550f..4741650e15 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -55,9 +55,6 @@ #include #include #include -#ifdef HAVE_LANGINFO_H - #include -#endif #if defined(__WIN32__) && !defined(__WXMICROWIN__) #define wxHAVE_WIN32_MB2WC @@ -155,7 +152,7 @@ static size_t decode_utf16(const wxUint16* input, wxUint32& output) output = *input; return 1; } - else if ((input[1]<0xdc00) || (input[1]>=0xdfff)) + else if ((input[1]<0xdc00) || (input[1]>0xdfff)) { output = *input; return (size_t)-1;