diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-10 20:47:55 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-10 20:47:55 +0000 |
commit | 3ffde1bc73156098e78e5e303b3f5198a1d073b8 (patch) | |
tree | c3a13bfda69bfb9bc4a85855d588d64d27faaa57 /xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp | |
parent | 326c38c4f2749e61fa2dec1d0f326e4099d6a24c (diff) | |
download | pdfium-3ffde1bc73156098e78e5e303b3f5198a1d073b8.tar.xz |
Rename GetTemplateNode to GetTemplateNodeIfExists
This CL makes it explicit that GetTemplateNodeIfExists can return
nullptr. Various call sites are updated as needed.
Change-Id: If6edd5962b59e7e4ce3dbe9bbdc957783cf76abe
Reviewed-on: https://pdfium-review.googlesource.com/22678
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp b/xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp index 6275650370..d5bbeef2ec 100644 --- a/xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp +++ b/xfa/fxfa/parser/cxfa_itemlayoutprocessor.cpp @@ -2824,7 +2824,7 @@ bool CXFA_ItemLayoutProcessor::JudgeLeaderOrTrailerForOccur( if (!pFormNode) return false; - CXFA_Node* pTemplate = pFormNode->GetTemplateNode(); + CXFA_Node* pTemplate = pFormNode->GetTemplateNodeIfExists(); if (!pTemplate) pTemplate = pFormNode; |