fix PIChar
This commit is contained in:
@@ -347,7 +347,7 @@ PIChar PIChar::toUpper() const {
|
||||
return PIChar(wc);
|
||||
# endif
|
||||
#endif
|
||||
return PIChar(towupper(ch));
|
||||
return PIChar((ushort)towupper(ch));
|
||||
}
|
||||
|
||||
|
||||
@@ -365,7 +365,7 @@ PIChar PIChar::toLower() const {
|
||||
return PIChar(wc);
|
||||
# endif
|
||||
#endif
|
||||
return PIChar(towlower(ch));
|
||||
return PIChar((ushort)towlower(ch));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user