| Index: fpdfsdk/src/fsdk_actionhandler.cpp
|
| diff --git a/fpdfsdk/src/fsdk_actionhandler.cpp b/fpdfsdk/src/fsdk_actionhandler.cpp
|
| index 6f8ea0c60f7f3e0ed03c966493b4d0575b3d7093..25f39ff8c78a85700ee683ca437e7d451326763b 100644
|
| --- a/fpdfsdk/src/fsdk_actionhandler.cpp
|
| +++ b/fpdfsdk/src/fsdk_actionhandler.cpp
|
| @@ -159,7 +159,7 @@ FX_BOOL CPDFSDK_ActionHandler::ExecuteDocumentOpenAction(const CPDF_Action& acti
|
| DoAction_NoJs(action, pDocument);
|
| }
|
|
|
| - for (FX_INT32 i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| + for (int32_t i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| {
|
| CPDF_Action subaction = action.GetSubAction(i);
|
| if (!ExecuteDocumentOpenAction(subaction, pDocument, list)) return FALSE;
|
| @@ -214,7 +214,7 @@ FX_BOOL CPDFSDK_ActionHandler::ExecuteLinkAction(const CPDF_Action& action, CPDF
|
| DoAction_NoJs(action, pDocument);
|
| }
|
|
|
| - for (FX_INT32 i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| + for (int32_t i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| {
|
| CPDF_Action subaction = action.GetSubAction(i);
|
| if (!ExecuteLinkAction(subaction, pDocument, list)) return FALSE;
|
| @@ -255,7 +255,7 @@ FX_BOOL CPDFSDK_ActionHandler::ExecuteDocumentPageAction(const CPDF_Action& acti
|
| if (!IsValidDocView(pDocument))
|
| return FALSE;
|
|
|
| - for (FX_INT32 i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| + for (int32_t i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| {
|
| CPDF_Action subaction = action.GetSubAction(i);
|
| if (!ExecuteDocumentPageAction(subaction, type, pDocument, list)) return FALSE;
|
| @@ -310,7 +310,7 @@ FX_BOOL CPDFSDK_ActionHandler::ExecuteFieldAction(const CPDF_Action& action, CPD
|
| DoAction_NoJs(action, pDocument);
|
| }
|
|
|
| - for (FX_INT32 i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| + for (int32_t i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| {
|
| CPDF_Action subaction = action.GetSubAction(i);
|
| if (!ExecuteFieldAction(subaction, type, pDocument, pFormField, data, list)) return FALSE;
|
| @@ -400,7 +400,7 @@ FX_BOOL CPDFSDK_ActionHandler::ExecuteScreenAction(const CPDF_Action& action, CP
|
| DoAction_NoJs(action, pDocument);
|
| }
|
|
|
| - for (FX_INT32 i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| + for (int32_t i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| {
|
| CPDF_Action subaction = action.GetSubAction(i);
|
| if (!ExecuteScreenAction(subaction, type, pDocument, pScreen, list)) return FALSE;
|
| @@ -455,7 +455,7 @@ FX_BOOL CPDFSDK_ActionHandler::ExecuteBookMark(const CPDF_Action& action, CPDFSD
|
| DoAction_NoJs(action, pDocument);
|
| }
|
|
|
| - for (FX_INT32 i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| + for (int32_t i=0,sz=action.GetSubActionsCount(); i<sz; i++)
|
| {
|
| CPDF_Action subaction = action.GetSubAction(i);
|
| if (!ExecuteBookMark(subaction, pDocument, pBookmark, list)) return FALSE;
|
|
|