diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-16 21:46:05 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-16 21:46:05 +0000 |
commit | 213503e6eed2a53ff3fa2f343fbe948ccf0f1064 (patch) | |
tree | e5167701fe01aaa636cf3e9bb1d6880188ef45f3 /xfa/fxfa/cxfa_ffpageview.h | |
parent | aa5769a417251214d1a8b3ebb5153a9251f50448 (diff) | |
download | pdfium-213503e6eed2a53ff3fa2f343fbe948ccf0f1064.tar.xz |
Remove optional argument from CXFA_LayoutProcessor::StartLayout()
Change-Id: I559d8208b8415e42e520e81114f9d2d66e74b288
Reviewed-on: https://pdfium-review.googlesource.com/40391
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/cxfa_ffpageview.h')
-rw-r--r-- | xfa/fxfa/cxfa_ffpageview.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/cxfa_ffpageview.h b/xfa/fxfa/cxfa_ffpageview.h index daf2b1933e..31ce63f8d9 100644 --- a/xfa/fxfa/cxfa_ffpageview.h +++ b/xfa/fxfa/cxfa_ffpageview.h @@ -95,9 +95,9 @@ class CXFA_FFTabOrderPageWidgetIterator : public IXFA_WidgetIterator { void OrderContainer(CXFA_LayoutItemIterator* sIterator, CXFA_LayoutItem* pContainerItem, CXFA_TabParam* pContainer, - bool& bCurrentItem, - bool& bContentArea, - bool bMarsterPage = false); + bool* bCurrentItem, + bool* bContentArea, + bool bMasterPage); std::vector<UnownedPtr<CXFA_FFWidget>> m_TabOrderWidgetArray; UnownedPtr<CXFA_FFPageView> m_pPageView; |