diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-08-23 20:47:16 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-23 20:47:16 +0000 |
commit | 3b45012d57884b06915eb5a1f54fbba04a45e807 (patch) | |
tree | d338ee678993d9192ca1d7419b7f1e63e9bfb818 /fxbarcode/pdf417/BC_PDF417Writer.cpp | |
parent | e919ec18fc0b008241e5e5371d5762e9fe89de6f (diff) | |
download | pdfium-3b45012d57884b06915eb5a1f54fbba04a45e807.tar.xz |
Remove CBC_BarcodeMatrix::m_matrixOut and just return the bit array.
Change-Id: I12893784321f92e5cac2b80653897007b6e63c7e
Reviewed-on: https://pdfium-review.googlesource.com/41111
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxbarcode/pdf417/BC_PDF417Writer.cpp')
-rw-r--r-- | fxbarcode/pdf417/BC_PDF417Writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxbarcode/pdf417/BC_PDF417Writer.cpp b/fxbarcode/pdf417/BC_PDF417Writer.cpp index 129d59c393..479bc2cd85 100644 --- a/fxbarcode/pdf417/BC_PDF417Writer.cpp +++ b/fxbarcode/pdf417/BC_PDF417Writer.cpp @@ -62,7 +62,7 @@ uint8_t* CBC_PDF417Writer::Encode(const WideString& contents, return nullptr; CBC_BarcodeMatrix* barcodeMatrix = encoder.getBarcodeMatrix(); - std::vector<uint8_t> matrixData = barcodeMatrix->getMatrix(); + std::vector<uint8_t> matrixData = barcodeMatrix->toBitArray(); int32_t matrixWidth = barcodeMatrix->getWidth(); int32_t matrixHeight = barcodeMatrix->getHeight(); |