diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-03-27 14:54:59 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-28 14:22:30 +0000 |
commit | 35db73cc3ea42cfa690ebc5c283d7bc5f062aba9 (patch) | |
tree | ef68636d6cc5cf8e96054bdbb15b0f62f5819412 /xfa/fxfa/parser/xfa_layout_itemlayout.h | |
parent | 0004f29bf6ee3c6060a272c79f14993e92e053c7 (diff) | |
download | pdfium-35db73cc3ea42cfa690ebc5c283d7bc5f062aba9.tar.xz |
use std::vector for m_rgSpecifiedColumnWidths
Change-Id: I8cb6f016403febc47df1df21e9b68c8a6348e647
Reviewed-on: https://pdfium-review.googlesource.com/3236
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/xfa_layout_itemlayout.h')
-rw-r--r-- | xfa/fxfa/parser/xfa_layout_itemlayout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/xfa_layout_itemlayout.h b/xfa/fxfa/parser/xfa_layout_itemlayout.h index 72cb235acb..9b8cd2f31a 100644 --- a/xfa/fxfa/parser/xfa_layout_itemlayout.h +++ b/xfa/fxfa/parser/xfa_layout_itemlayout.h @@ -56,7 +56,7 @@ class CXFA_LayoutContext { m_pOverflowNode(nullptr) {} ~CXFA_LayoutContext() {} - CFX_ArrayTemplate<float>* m_prgSpecifiedColumnWidths; + std::vector<float>* m_prgSpecifiedColumnWidths; float m_fCurColumnWidth; bool m_bCurColumnWidthAvaiable; CXFA_ItemLayoutProcessor* m_pOverflowProcessor; @@ -115,7 +115,7 @@ class CXFA_ItemLayoutProcessor { CXFA_LayoutPageMgr* m_pPageMgr; std::list<CXFA_Node*> m_PendingNodes; bool m_bBreakPending; - CFX_ArrayTemplate<float> m_rgSpecifiedColumnWidths; + std::vector<float> m_rgSpecifiedColumnWidths; std::vector<CXFA_ContentLayoutItem*> m_arrayKeepItems; float m_fLastRowWidth; float m_fLastRowY; |