| Index: xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp
|
| diff --git a/xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp b/xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp
|
| index f5df04ee9c7a4abd8ec7fba47ef8159d89ad8af4..ca44e012938273b92a6ad60be4fddb5489598522 100644
|
| --- a/xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp
|
| +++ b/xfa/fxbarcode/qrcode/BC_QRCoderMatrixUtil.cpp
|
| @@ -211,8 +211,7 @@ void CBC_QRCoderMatrixUtil::EmbedDataBits(CBC_QRCoderBitVector* dataBits,
|
| bit = 0;
|
| }
|
| if (maskPattern != -1) {
|
| - FX_BOOL bol =
|
| - CBC_QRCoderMaskUtil::GetDataMaskBit(maskPattern, xx, y, e);
|
| + bool bol = CBC_QRCoderMaskUtil::GetDataMaskBit(maskPattern, xx, y, e);
|
| BC_EXCEPTION_CHECK_ReturnVoid(e);
|
| if (bol) {
|
| bit ^= 0x01;
|
| @@ -285,10 +284,10 @@ void CBC_QRCoderMatrixUtil::MakeVersionInfoBits(int32_t version,
|
| BC_EXCEPTION_CHECK_ReturnVoid(e);
|
| }
|
| }
|
| -FX_BOOL CBC_QRCoderMatrixUtil::IsEmpty(int32_t value) {
|
| +bool CBC_QRCoderMatrixUtil::IsEmpty(int32_t value) {
|
| return (uint8_t)value == 0xff;
|
| }
|
| -FX_BOOL CBC_QRCoderMatrixUtil::IsValidValue(int32_t value) {
|
| +bool CBC_QRCoderMatrixUtil::IsValidValue(int32_t value) {
|
| return ((uint8_t)value == 0xff || (uint8_t)value == 0x00 ||
|
| (uint8_t)value == 0x01);
|
| }
|
|
|