From: Ryan Norton Date: Fri, 8 Oct 2004 23:33:11 +0000 (+0000) Subject: fix description X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/19db911ad22775daac04871c7d31a878b75e83dd fix description git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/string.cpp b/src/common/string.cpp index 2c81c15393..f601c39f5f 100644 --- a/src/common/string.cpp +++ b/src/common/string.cpp @@ -990,8 +990,8 @@ int STRINGCLASS::compare(size_t nStart, size_t nLen, #if wxUSE_WCHAR_T -//Convert a wide character string to a multi-byte character string of -//a specified length, ignoring intermittent null characters +//Convert a wide character string of a specified length +//to a multi-byte character string, ignoring intermittent null characters inline wxCharBuffer wxMbstr(const wchar_t* szString, size_t nStringLen, wxMBConv& conv) { const wchar_t* szEnd = szString + nStringLen + 1; @@ -1031,8 +1031,8 @@ inline wxCharBuffer wxMbstr(const wchar_t* szString, size_t nStringLen, wxMBConv return buffer; //success - return converted string } -//Convert a multi-byte character string to a wide character string of -//a specified length, ignoring intermittent null characters +//Convert a multi-byte character string of a specified length +//to a wide character string, ignoring intermittent null characters inline wxWCharBuffer wxWcstr(const char* szString, size_t nStringLen, wxMBConv& conv) { const char* szEnd = szString + nStringLen + 1;