X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3c99e2fd1b3432974b892be508c0757da5b6ad49..b72ed64277a2b16c6c8681995e5f3f304a8fe38d:/interface/wx/encconv.h diff --git a/interface/wx/encconv.h b/interface/wx/encconv.h index ceba036f84..4f65d141ed 100644 --- a/interface/wx/encconv.h +++ b/interface/wx/encconv.h @@ -3,15 +3,14 @@ // Purpose: interface of wxEncodingConverter // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @class wxEncodingConverter 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 @c 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 @@ -64,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;