| Index: xfa/src/fxbarcode/qrcode/BC_QRCoderECB.h
|
| diff --git a/xfa/src/fxbarcode/qrcode/BC_QRCoderECB.h b/xfa/src/fxbarcode/qrcode/BC_QRCoderECB.h
|
| index e8c2d3699923222b05bb68c6f7e8199e02469790..5a9c25bd5330c8a872345751d76b51739054447d 100644
|
| --- a/xfa/src/fxbarcode/qrcode/BC_QRCoderECB.h
|
| +++ b/xfa/src/fxbarcode/qrcode/BC_QRCoderECB.h
|
| @@ -9,12 +9,12 @@
|
| class CBC_QRCoderECB
|
| {
|
| private:
|
| - FX_INT32 m_count;
|
| - FX_INT32 m_dataCodeWords;
|
| + int32_t m_count;
|
| + int32_t m_dataCodeWords;
|
| public:
|
| - CBC_QRCoderECB(FX_INT32 count, FX_INT32 dataCodeWords);
|
| + CBC_QRCoderECB(int32_t count, int32_t dataCodeWords);
|
| virtual ~CBC_QRCoderECB();
|
| - FX_INT32 GetCount();
|
| - FX_INT32 GetDataCodeWords();
|
| + int32_t GetCount();
|
| + int32_t GetDataCodeWords();
|
| };
|
| #endif
|
|
|