diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-07-30 22:07:22 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-07-30 22:07:22 +0000 |
commit | b53ef1e52d40f586c401a7e3948259f8ebbfd3cc (patch) | |
tree | 23a55140c7bee634f40ff30f8370c0aaa32002de /xfa/fxfa/parser/cxfa_containerlayoutitem.cpp | |
parent | 87c1fdcc9a5669e29c4440e2b220587de7134e7a (diff) | |
download | pdfium-b53ef1e52d40f586c401a7e3948259f8ebbfd3cc.tar.xz |
Replace m_bIsContentLayoutItem with proper enum for type.
Because bools are bogus.
Change-Id: I54a2627443784cec40912288230e657c63a35408
Reviewed-on: https://pdfium-review.googlesource.com/39190
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_containerlayoutitem.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_containerlayoutitem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_containerlayoutitem.cpp b/xfa/fxfa/parser/cxfa_containerlayoutitem.cpp index 47da2b1798..f5af3a3a25 100644 --- a/xfa/fxfa/parser/cxfa_containerlayoutitem.cpp +++ b/xfa/fxfa/parser/cxfa_containerlayoutitem.cpp @@ -14,7 +14,7 @@ #include "xfa/fxfa/parser/cxfa_node.h" CXFA_ContainerLayoutItem::CXFA_ContainerLayoutItem(CXFA_Node* pNode) - : CXFA_LayoutItem(pNode, false) {} + : CXFA_LayoutItem(pNode, kContainerItem) {} CXFA_ContainerLayoutItem::~CXFA_ContainerLayoutItem() = default; |