diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_layoutprocessor.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_layoutprocessor.cpp | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/xfa/fxfa/parser/cxfa_layoutprocessor.cpp b/xfa/fxfa/parser/cxfa_layoutprocessor.cpp index 540e1c9156..c31766f6f6 100644 --- a/xfa/fxfa/parser/cxfa_layoutprocessor.cpp +++ b/xfa/fxfa/parser/cxfa_layoutprocessor.cpp @@ -101,17 +101,7 @@ bool CXFA_LayoutProcessor::IncrementLayout() { StartLayout(true); return DoLayout() == 100; } - for (CXFA_Node* pNode : m_rgChangedContainers) { - CXFA_Node* pParentNode = pNode->GetContainerParent(); - if (!pParentNode) - return false; - if (!CXFA_ItemLayoutProcessor::IncrementRelayoutNode(this, pNode, - pParentNode)) { - return false; - } - } - m_rgChangedContainers.clear(); - return true; + return m_rgChangedContainers.empty(); } int32_t CXFA_LayoutProcessor::CountPages() const { |