diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2018-08-22 17:22:17 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-22 17:22:17 +0000 |
commit | c47ba8ece5d73651dd966fd420ba00da2f9c6ad8 (patch) | |
tree | bfb0aa308aabd34f3c7f8697436d7b8e2b87304d /fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | |
parent | 03fdf3a2b5ee0974be13a9594a897003df412306 (diff) | |
download | pdfium-c47ba8ece5d73651dd966fd420ba00da2f9c6ad8.tar.xz |
Remove unused setters in CBC_BarcodeMatrix and CBC_BarcodeRow.
Change-Id: I01c83d96f07eac776e8269b7d1e06b2b07ca75ea
Reviewed-on: https://pdfium-review.googlesource.com/40932
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h')
-rw-r--r-- | fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h index 4f6591ed55..38744471ba 100644 --- a/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h +++ b/fxbarcode/pdf417/BC_PDF417BarcodeMatrix.h @@ -21,8 +21,6 @@ class CBC_BarcodeMatrix { CBC_BarcodeRow* getCurrentRow() const { return m_matrix[m_currentRow].get(); } int32_t getWidth() const { return m_outWidth; } int32_t getHeight() const { return m_outHeight; } - void set(int32_t x, int32_t y, uint8_t value); - void setMatrix(int32_t x, int32_t y, bool black); void nextRow(); std::vector<uint8_t>& getMatrix(); std::vector<uint8_t>& getScaledMatrix(int32_t scale); |