diff options
author | tsepez <tsepez@chromium.org> | 2016-10-27 13:10:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-27 13:10:24 -0700 |
commit | e93dbd6c18b8b58e5d6b4813052fafbc323e9692 (patch) | |
tree | fb1fdada3c0b2eb1d7d00eeee19e7870340f0f17 /xfa/fxbarcode/oned/BC_OneDimWriter.cpp | |
parent | 5c15e67e12e245d102a2e0ef1b4ade54379f252c (diff) | |
download | pdfium-e93dbd6c18b8b58e5d6b4813052fafbc323e9692.tar.xz |
Fix some FX_BOOL / int noise in XFA barcodes
Review-Url: https://codereview.chromium.org/2447163007
Diffstat (limited to 'xfa/fxbarcode/oned/BC_OneDimWriter.cpp')
-rw-r--r-- | xfa/fxbarcode/oned/BC_OneDimWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxbarcode/oned/BC_OneDimWriter.cpp b/xfa/fxbarcode/oned/BC_OneDimWriter.cpp index 72c956ac11..cb145f52ed 100644 --- a/xfa/fxbarcode/oned/BC_OneDimWriter.cpp +++ b/xfa/fxbarcode/oned/BC_OneDimWriter.cpp @@ -58,7 +58,7 @@ void CBC_OneDimWriter::SetDataLength(int32_t length) { m_iDataLenth = length; } -void CBC_OneDimWriter::SetCalcChecksum(int32_t state) { +void CBC_OneDimWriter::SetCalcChecksum(FX_BOOL state) { m_bCalcChecksum = state; } |