| Index: xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h
|
| diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h b/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h
|
| index 6e2aa4d952b39fd506453dc2779d4d2cea9cce08..f25e37c1b42b098ef3409e5ff8aca1b074c029a1 100644
|
| --- a/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h
|
| +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.h
|
| @@ -10,18 +10,18 @@ class CBC_BarcodeMetadata;
|
| class CBC_BarcodeMetadata
|
| {
|
| public:
|
| - CBC_BarcodeMetadata(FX_INT32 columnCount, FX_INT32 rowCountUpperPart, FX_INT32 rowCountLowerPart, FX_INT32 errorCorrectionLevel);
|
| + CBC_BarcodeMetadata(int32_t columnCount, int32_t rowCountUpperPart, int32_t rowCountLowerPart, int32_t errorCorrectionLevel);
|
| virtual ~CBC_BarcodeMetadata();
|
| - FX_INT32 getColumnCount();
|
| - FX_INT32 getErrorCorrectionLevel();
|
| - FX_INT32 getRowCount();
|
| - FX_INT32 getRowCountUpperPart();
|
| - FX_INT32 getRowCountLowerPart();
|
| + int32_t getColumnCount();
|
| + int32_t getErrorCorrectionLevel();
|
| + int32_t getRowCount();
|
| + int32_t getRowCountUpperPart();
|
| + int32_t getRowCountLowerPart();
|
| private:
|
| - FX_INT32 m_columnCount;
|
| - FX_INT32 m_errorCorrectionLevel;
|
| - FX_INT32 m_rowCountUpperPart;
|
| - FX_INT32 m_rowCountLowerPart;
|
| - FX_INT32 m_rowCount;
|
| + int32_t m_columnCount;
|
| + int32_t m_errorCorrectionLevel;
|
| + int32_t m_rowCountUpperPart;
|
| + int32_t m_rowCountLowerPart;
|
| + int32_t m_rowCount;
|
| };
|
| #endif
|
|
|