| Index: xfa/src/fxjse/src/class.cpp
|
| diff --git a/xfa/src/fxjse/src/class.cpp b/xfa/src/fxjse/src/class.cpp
|
| index 891c7e1002f742da6f00544c2fbb3c7c9775cf98..04b087f37faed33494bc86447b1940aed7087443 100644
|
| --- a/xfa/src/fxjse/src/class.cpp
|
| +++ b/xfa/src/fxjse/src/class.cpp
|
| @@ -183,7 +183,7 @@ FXJSE_HVALUE CFXJSE_Arguments::GetValue(int32_t index) const {
|
| FX_BOOL CFXJSE_Arguments::GetBoolean(int32_t index) const {
|
| const CFXJSE_ArgumentsImpl* lpArguments =
|
| reinterpret_cast<const CFXJSE_ArgumentsImpl* const>(this);
|
| - return (*lpArguments->m_pInfo)[index]->BooleanValue() ? TRUE : FALSE;
|
| + return (*lpArguments->m_pInfo)[index]->BooleanValue();
|
| }
|
| int32_t CFXJSE_Arguments::GetInt32(int32_t index) const {
|
| const CFXJSE_ArgumentsImpl* lpArguments =
|
|
|