Index: xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h |
diff --git a/xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h b/xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h |
index 90e76ac50a06895672b454199ec29f38e1a88d3d..7d9d19cb5619543e031cbe5309031cde54311911 100644 |
--- a/xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h |
+++ b/xfa/fxbarcode/pdf417/BC_PDF417BarcodeRow.h |
@@ -17,12 +17,12 @@ class CBC_BarcodeRow { |
void set(int32_t x, uint8_t value); |
void set(int32_t x, bool black); |
void addBar(bool black, int32_t width); |
- CFX_ByteArray& getRow(); |
- CFX_ByteArray& getScaledRow(int32_t scale); |
+ CFX_ArrayTemplate<uint8_t>& getRow(); |
+ CFX_ArrayTemplate<uint8_t>& getScaledRow(int32_t scale); |
private: |
- CFX_ByteArray m_row; |
- CFX_ByteArray m_output; |
+ CFX_ArrayTemplate<uint8_t> m_row; |
+ CFX_ArrayTemplate<uint8_t> m_output; |
int32_t m_currentLocation; |
}; |