wxUniChar::unicode_type -> value_type

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44940 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-03-19 16:17:37 +00:00
parent e80118cfb9
commit d1b7ed6792
2 changed files with 23 additions and 23 deletions

View File

@@ -26,7 +26,7 @@
// ===========================================================================
/* static */
wxUniChar::unicode_type wxUniChar::From8bit(char c)
wxUniChar::value_type wxUniChar::From8bit(char c)
{
// all supported charsets have the first 128 characters same as ASCII:
if ( (unsigned char)c < 0x80 )
@@ -39,7 +39,7 @@ wxUniChar::unicode_type wxUniChar::From8bit(char c)
}
/* static */
char wxUniChar::To8bit(wxUniChar::unicode_type c)
char wxUniChar::To8bit(wxUniChar::value_type c)
{
// all supported charsets have the first 128 characters same as ASCII:
if ( c < 0x80 )