diff options
author | tsepez <tsepez@chromium.org> | 2016-04-28 14:56:27 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-28 14:56:27 -0700 |
commit | aef780db30c434e1d681d81852fb13160e72ed1e (patch) | |
tree | 24810c630b3b27649c0dd856d795c0069ca5bcd6 /xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | |
parent | 8e957baa851aed4b02511d04a66c0f95387d1e10 (diff) | |
download | pdfium-aef780db30c434e1d681d81852fb13160e72ed1e.tar.xz |
Replace CFX_PtrArray with typesafe CFX_ArrayTemplate, part 4
Review-Url: https://codereview.chromium.org/1932703003
Diffstat (limited to 'xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h')
-rw-r--r-- | xfa/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | 3 |
1 files changed, 2 insertions, 1 deletions
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<CBC_BarcodeRow*> m_matrix; CFX_ByteArray m_matrixOut; int32_t m_currentRow; int32_t m_height; |