| Index: xfa/fxfa/parser/xfa_layout_appadapter.cpp
|
| diff --git a/xfa/fxfa/parser/xfa_layout_appadapter.cpp b/xfa/fxfa/parser/xfa_layout_appadapter.cpp
|
| index b175cad9c6c3f5c73835151138733563baaf2df4..cf299c1df03e6ef646839121a18fa47575364259 100644
|
| --- a/xfa/fxfa/parser/xfa_layout_appadapter.cpp
|
| +++ b/xfa/fxfa/parser/xfa_layout_appadapter.cpp
|
| @@ -18,6 +18,8 @@
|
| #include "xfa/fxfa/parser/xfa_parser.h"
|
| #include "xfa/fxfa/parser/xfa_script.h"
|
| #include "xfa/fxfa/parser/xfa_utils.h"
|
| +#include "xfa/fxfa/parser/xfa_parser_imp.h"
|
| +#include "xfa/fxfa/app/xfa_ffnotify.h"
|
|
|
| uint32_t XFA_GetRelevant(CXFA_Node* pFormItem, uint32_t dwParentRelvant) {
|
| uint32_t dwRelevant = XFA_LAYOUTSTATUS_Viewable | XFA_LAYOUTSTATUS_Printable;
|
| @@ -41,9 +43,9 @@ uint32_t XFA_GetRelevant(CXFA_Node* pFormItem, uint32_t dwParentRelvant) {
|
| }
|
| void XFA_ReleaseLayoutItem(CXFA_LayoutItem* pLayoutItem) {
|
| CXFA_LayoutItem* pNode = pLayoutItem->m_pFirstChild;
|
| - IXFA_Notify* pNotify =
|
| + CXFA_FFNotify* pNotify =
|
| pLayoutItem->m_pFormNode->GetDocument()->GetParser()->GetNotify();
|
| - IXFA_DocLayout* pDocLayout =
|
| + CXFA_LayoutProcessor* pDocLayout =
|
| pLayoutItem->m_pFormNode->GetDocument()->GetDocLayout();
|
| while (pNode) {
|
| CXFA_LayoutItem* pNext = pNode->m_pNextSibling;
|
|
|