]> git.saurik.com Git - wxWidgets.git/commitdiff
fix description
authorRyan Norton <wxprojects@comcast.net>
Fri, 8 Oct 2004 23:33:11 +0000 (23:33 +0000)
committerRyan Norton <wxprojects@comcast.net>
Fri, 8 Oct 2004 23:33:11 +0000 (23:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29742 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/string.cpp

index 2c81c15393fb9dfee5376eaf7f04d6f66aed6d0f..f601c39f5f839710d33e3169730b7e072fc12282 100644 (file)
@@ -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;