X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8d94819c437fdf28c45e9f328e6c38fd1c639ddf..36a0190ebd5bd9a7302f60f6dcd608b80574e21c:/interface/wx/encconv.h diff --git a/interface/wx/encconv.h b/interface/wx/encconv.h index 857531c615..579f4fc1e7 100644 --- a/interface/wx/encconv.h +++ b/interface/wx/encconv.h @@ -2,8 +2,7 @@ // Name: encconv.h // Purpose: interface of wxEncodingConverter // Author: wxWidgets team -// RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -70,12 +69,23 @@ public: bool Convert(const wchar_t* input, char* output) const; /** - Convert input string according to settings passed to Init() in-place, - i.e. write the result to the same memory area. + Convert input string according to settings passed to Init() in-place. + + With this overload, the conversion result is written to the same memory + area from which the input is read. See the Convert(const char*,char*) const overload for more info. */ bool Convert(char* str) const; + + /** + Convert input string according to settings passed to Init() in-place. + + With this overload, the conversion result is written to the same memory + area from which the input is read. + + See the Convert(const wchar_t*,wchar_t*) const overload for more info. + */ bool Convert(wchar_t* str) const; /**