| Index: xfa/src/fxfa/src/fm2js/xfa_fm2jsapi.cpp
|
| diff --git a/xfa/src/fxfa/src/fm2js/xfa_fm2jsapi.cpp b/xfa/src/fxfa/src/fm2js/xfa_fm2jsapi.cpp
|
| index 8a1b1226f45c449c5bfc24696555f7771e5c9f20..0ffec233dd3f47e97c4eda4d5ee9551187a24894 100644
|
| --- a/xfa/src/fxfa/src/fm2js/xfa_fm2jsapi.cpp
|
| +++ b/xfa/src/fxfa/src/fm2js/xfa_fm2jsapi.cpp
|
| @@ -9,14 +9,14 @@
|
| extern "C"
|
| {
|
| #endif
|
| -FX_INT32 XFA_FM2JS_Translate(FX_WSTR wsFormcalc, CFX_WideTextBuf& wsJavascript, CFX_WideString& wsError)
|
| +int32_t XFA_FM2JS_Translate(FX_WSTR wsFormcalc, CFX_WideTextBuf& wsJavascript, CFX_WideString& wsError)
|
| {
|
| if (wsFormcalc.IsEmpty()) {
|
| wsJavascript.Clear();
|
| wsError.Empty();
|
| return 0;
|
| }
|
| - FX_INT32 status = 0;
|
| + int32_t status = 0;
|
| CXFA_FMProgram program;
|
| status = program.Init(wsFormcalc);
|
| if(status) {
|
|
|