| Index: xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp
|
| diff --git a/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp b/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp
|
| index 2d7e1860cffcbbdf4b95b53d7a503fc25e749204..5e893def7ad2e7b0015d8e2477dc074f1e662911 100644
|
| --- a/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp
|
| +++ b/xfa/fxfa/parser/xfa_script_signaturepseudomodel.cpp
|
| @@ -12,7 +12,6 @@
|
| #include "xfa/fxfa/parser/xfa_document.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"
|
| @@ -31,7 +30,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Verify(
|
| ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"verify");
|
| return;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -52,7 +51,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Sign(
|
| ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"sign");
|
| return;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -84,7 +83,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Enumerate(
|
| ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"enumerate");
|
| return;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
| @@ -102,7 +101,7 @@ void CScript_SignaturePseudoModel::Script_SignaturePseudoModel_Clear(
|
| ThrowException(XFA_IDS_INCORRECT_NUMBER_OF_METHOD, L"clear");
|
| return;
|
| }
|
| - CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify();
|
| + CXFA_FFNotify* pNotify = m_pDocument->GetNotify();
|
| if (!pNotify) {
|
| return;
|
| }
|
|
|