| 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 b6b595588dff8568732e368fd64d43f60bda38d5..bb236ac21b3b4c194d57db9dbd3f53694b1c9f03 100644
|
| --- a/core/src/fxcrt/fx_basic_wstring.cpp
|
| +++ b/core/src/fxcrt/fx_basic_wstring.cpp
|
| @@ -980,11 +980,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;
|
|
|