| Index: xfa/fxbarcode/pdf417/BC_PDF417.h
|
| diff --git a/xfa/fxbarcode/pdf417/BC_PDF417.h b/xfa/fxbarcode/pdf417/BC_PDF417.h
|
| index c3a9f4c4773179c6e6e5640429e70a4dc2263d47..5f7c2d49b9ae52ad0d1679546cae48a34df2f4c3 100644
|
| --- a/xfa/fxbarcode/pdf417/BC_PDF417.h
|
| +++ b/xfa/fxbarcode/pdf417/BC_PDF417.h
|
| @@ -18,7 +18,7 @@ class CBC_BarcodeMatrix;
|
| class CBC_PDF417 {
|
| public:
|
| CBC_PDF417();
|
| - explicit CBC_PDF417(FX_BOOL compact);
|
| + explicit CBC_PDF417(bool compact);
|
| virtual ~CBC_PDF417();
|
|
|
| CBC_BarcodeMatrix* getBarcodeMatrix();
|
| @@ -30,7 +30,7 @@ class CBC_PDF417 {
|
| int32_t maxRows,
|
| int32_t minRows);
|
| void setCompaction(Compaction compaction);
|
| - void setCompact(FX_BOOL compact);
|
| + void setCompact(bool compact);
|
|
|
| private:
|
| static const int32_t START_PATTERN = 0x1fea8;
|
| @@ -56,7 +56,7 @@ class CBC_PDF417 {
|
| int32_t& e);
|
|
|
| std::unique_ptr<CBC_BarcodeMatrix> m_barcodeMatrix;
|
| - FX_BOOL m_compact;
|
| + bool m_compact;
|
| Compaction m_compaction;
|
| int32_t m_minCols;
|
| int32_t m_maxCols;
|
|
|