From aef780db30c434e1d681d81852fb13160e72ed1e Mon Sep 17 00:00:00 2001 From: tsepez Date: Thu, 28 Apr 2016 14:56:27 -0700 Subject: Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, part 4 Review-Url: https://codereview.chromium.org/1932703003 --- xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h') diff --git a/xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h b/xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h index 793bf0acf2..c86f714fbb 100644 --- a/xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h +++ b/xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h @@ -10,6 +10,7 @@ #include "core/fxcrt/include/fx_basic.h" class CBC_BarcodeRow; + class CBC_BarcodeMatrix { public: CBC_BarcodeMatrix(); @@ -26,7 +27,7 @@ class CBC_BarcodeMatrix { int32_t getHeight(); private: - CFX_PtrArray m_matrix; + CFX_ArrayTemplate m_matrix; CFX_ByteArray m_matrixOut; int32_t m_currentRow; int32_t m_height; -- cgit v1.2.3