From 13b4df952c77383f50696e51fcbaa2d8bbd3b3b9 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 3 Jan 2012 23:27:50 +0000 Subject: [PATCH] Fix wxEncodingConverter::Convert(wchar_t) documentation. 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 --- interface/wx/encconv.h | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/interface/wx/encconv.h b/interface/wx/encconv.h index 4f65d141ed..7bf0a48c53 100644 --- a/interface/wx/encconv.h +++ b/interface/wx/encconv.h @@ -70,12 +70,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; /**