renamed to "numberOf" instead of "valueOf" at String class.
This commit is contained in:
parent
cf5c6315e8
commit
39fbdef7a6
@ -88,7 +88,7 @@ namespace hgl
|
||||
|
||||
if(result!=txt.Length())
|
||||
{
|
||||
error_info=OS_TEXT("[ERROR][SaveJson] Save file failed, only write ")+OSString::valueOf(result)+OS_TEXT("/")+OSString::valueOf(txt.Length());
|
||||
error_info=OS_TEXT("[ERROR][SaveJson] Save file failed, only write ")+OSString::numberOf(result)+OS_TEXT("/")+OSString::numberOf(txt.Length());
|
||||
return(false);
|
||||
}
|
||||
|
||||
|
@ -66,11 +66,11 @@ namespace hgl
|
||||
|
||||
const UTF8String GetExpatVersion()
|
||||
{
|
||||
return( UTF8String::valueOf(XML_MAJOR_VERSION)+
|
||||
return( UTF8String::numberOf(XML_MAJOR_VERSION)+
|
||||
UTF8String(U8_TEXT("."))+
|
||||
UTF8String::valueOf(XML_MINOR_VERSION)+
|
||||
UTF8String::numberOf(XML_MINOR_VERSION)+
|
||||
UTF8String(U8_TEXT("."))+
|
||||
UTF8String::valueOf(XML_MICRO_VERSION));
|
||||
UTF8String::numberOf(XML_MICRO_VERSION));
|
||||
}
|
||||
|
||||
const char *GetExpatError(int code)
|
||||
|
Loading…
x
Reference in New Issue
Block a user