From 35db73cc3ea42cfa690ebc5c283d7bc5f062aba9 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Mon, 27 Mar 2017 14:54:59 -0700 Subject: use std::vector for m_rgSpecifiedColumnWidths Change-Id: I8cb6f016403febc47df1df21e9b68c8a6348e647 Reviewed-on: https://pdfium-review.googlesource.com/3236 Reviewed-by: dsinclair Commit-Queue: dsinclair --- xfa/fxfa/parser/xfa_layout_itemlayout.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'xfa/fxfa/parser/xfa_layout_itemlayout.h') 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* m_prgSpecifiedColumnWidths; + std::vector* 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 m_PendingNodes; bool m_bBreakPending; - CFX_ArrayTemplate m_rgSpecifiedColumnWidths; + std::vector m_rgSpecifiedColumnWidths; std::vector m_arrayKeepItems; float m_fLastRowWidth; float m_fLastRowY; -- cgit v1.2.3