Index: xfa/fxbarcode/common/BC_CommonBitArray.h |
diff --git a/xfa/fxbarcode/common/BC_CommonBitArray.h b/xfa/fxbarcode/common/BC_CommonBitArray.h |
index 80a56d1b53369128c8bfb69fd01d93385284493d..6ad8ab321d8b421ea85cbf52a2f86c4355ad3bba 100644 |
--- a/xfa/fxbarcode/common/BC_CommonBitArray.h |
+++ b/xfa/fxbarcode/common/BC_CommonBitArray.h |
@@ -17,7 +17,7 @@ class CBC_CommonBitArray { |
virtual ~CBC_CommonBitArray(); |
int32_t GetSize(); |
- CFX_Int32Array& GetBits(); |
+ CFX_ArrayTemplate<int32_t>& GetBits(); |
int32_t GetSizeInBytes(); |
bool Get(int32_t i); |
void Set(int32_t i); |
@@ -30,7 +30,7 @@ class CBC_CommonBitArray { |
private: |
int32_t m_size; |
- CFX_Int32Array m_bits; |
+ CFX_ArrayTemplate<int32_t> m_bits; |
}; |
#endif // XFA_FXBARCODE_COMMON_BC_COMMONBITARRAY_H_ |