From 19db911ad22775daac04871c7d31a878b75e83dd Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Fri, 8 Oct 2004 23:33:11 +0000 Subject: [PATCH] fix description git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/string.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; -- 2.45.2