X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ae3c17b4013e80b99976c750c19fca47729517f6..1ac5cfc7c9d2df832a4e8f5737f43995e3308ab4:/interface/wx/encconv.h diff --git a/interface/wx/encconv.h b/interface/wx/encconv.h index a7821321ce..857531c615 100644 --- a/interface/wx/encconv.h +++ b/interface/wx/encconv.h @@ -8,25 +8,22 @@ /** @class wxEncodingConverter - @wxheader{encconv.h} This class is capable of converting strings between two 8-bit encodings/charsets. - It can also convert from/to Unicode (but only if you compiled wxWidgets - with wxUSE_WCHAR_T set to 1). + It can also convert from/to Unicode. Only a limited subset of encodings is supported by wxEncodingConverter: @c wxFONTENCODING_ISO8859_1..15, @c wxFONTENCODING_CP1250..1257 and @c wxFONTENCODING_KOI8. @note - Please use wxMBConv classes instead if possible. wxCSConv has much better support for various encodings than wxEncodingConverter. wxEncodingConverter is useful only if you rely on wxCONVERT_SUBSTITUTE mode of operation (see wxEncodingConverter::Init()). @library{wxbase} - @category{misc} + @category{conv} @see wxFontMapper, wxMBConv, @ref overview_nonenglish */ @@ -66,9 +63,6 @@ public: considered a lossless operation. @note You must call Init() before using this method! - - @note wchar_t versions of the method are not available if wxWidgets was - compiled with @c wxUSE_WCHAR_T set to 0. */ bool Convert(const char* input, char* output) const; bool Convert(const wchar_t* input, wchar_t* output) const;