| Index: core/src/fxcrt/fx_basic_wstring.cpp | 
| diff --git a/core/src/fxcrt/fx_basic_wstring.cpp b/core/src/fxcrt/fx_basic_wstring.cpp | 
| index 2442daed2719d74eab5a4771f69e05d49642b29c..ad3acba876f2b21f757679478c95be39e9dc10c5 100644 | 
| --- a/core/src/fxcrt/fx_basic_wstring.cpp | 
| +++ b/core/src/fxcrt/fx_basic_wstring.cpp | 
| @@ -977,11 +977,11 @@ FX_FLOAT FX_wtof(const FX_WCHAR* str, int len) | 
| return 0.0; | 
| } | 
| int cc = 0; | 
| -    FX_BOOL bNegative = FALSE; | 
| +    bool bNegative = false; | 
| if (str[0] == '+') { | 
| cc++; | 
| } else if (str[0] == '-') { | 
| -        bNegative = TRUE; | 
| +        bNegative = true; | 
| cc++; | 
| } | 
| int integer = 0; | 
|  |