This method mistakenly "inherited" the same documentation as 2 argument
Convert() overloads.
Closes #13825.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70256
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
bool Convert(const wchar_t* input, char* output) const;
/**
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;
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;
/**
bool Convert(wchar_t* str) const;
/**