| Index: xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp
|
| diff --git a/xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp b/xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp
|
| index e15813217014030424e764544fd78dcc2be31abb..f0f371c766336d137a696ba66cc3fa82eea61c0f 100644
|
| --- a/xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp
|
| +++ b/xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp
|
| @@ -17,7 +17,6 @@
|
| #include "xfa/fxfa/parser/xfa_layout_appadapter.h"
|
| #include "xfa/fxfa/parser/xfa_localemgr.h"
|
| #include "xfa/fxfa/parser/xfa_object.h"
|
| -#include "xfa/fxfa/parser/xfa_parser.h"
|
| #include "xfa/fxfa/parser/xfa_parser_imp.h"
|
| #include "xfa/fxfa/parser/xfa_script.h"
|
| #include "xfa/fxfa/parser/xfa_script_imp.h"
|
| @@ -32,7 +31,7 @@ void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_Ready(
|
| CFXJSE_Value* pValue,
|
| FX_BOOL bSetting,
|
| XFA_ATTRIBUTE eAttribute) {
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -357,7 +356,7 @@ void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_PageContent(
|
| if (iLength >= 3) {
|
| bOnPageArea = pArguments->GetInt32(2) == 0 ? FALSE : TRUE;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -379,7 +378,7 @@ void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_AbsPageCount(
|
| }
|
| void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_AbsPageCountInBatch(
|
| CFXJSE_Arguments* pArguments) {
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -391,7 +390,7 @@ void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_AbsPageCountInBatch(
|
| }
|
| void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_SheetCountInBatch(
|
| CFXJSE_Arguments* pArguments) {
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -431,7 +430,7 @@ void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_AbsPageInBatch(
|
| if (!pNode) {
|
| return;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -464,7 +463,7 @@ void CScript_LayoutPseudoModel::Script_LayoutPseudoModel_SheetInBatch(
|
| if (!pNode) {
|
| return;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
|
|