| Index: xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp
|
| diff --git a/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp b/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp
|
| index 456c0e6f2eaaea2de291b5c3a0861c277a35a6ef..fc3f255ec0878dfed3ebeb7d405fe6336e1830ba 100644
|
| --- a/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp
|
| +++ b/xfa/src/fxbarcode/pdf417/BC_PDF417BarcodeMetadata.cpp
|
| @@ -22,7 +22,7 @@
|
|
|
| #include "../barcode.h"
|
| #include "BC_PDF417BarcodeMetadata.h"
|
| -CBC_BarcodeMetadata::CBC_BarcodeMetadata(FX_INT32 columnCount, FX_INT32 rowCountUpperPart, FX_INT32 rowCountLowerPart, FX_INT32 errorCorrectionLevel)
|
| +CBC_BarcodeMetadata::CBC_BarcodeMetadata(int32_t columnCount, int32_t rowCountUpperPart, int32_t rowCountLowerPart, int32_t errorCorrectionLevel)
|
| {
|
| m_columnCount = columnCount;
|
| m_rowCountUpperPart = rowCountUpperPart;
|
| @@ -33,23 +33,23 @@ CBC_BarcodeMetadata::CBC_BarcodeMetadata(FX_INT32 columnCount, FX_INT32 rowCount
|
| CBC_BarcodeMetadata::~CBC_BarcodeMetadata()
|
| {
|
| }
|
| -FX_INT32 CBC_BarcodeMetadata::getColumnCount()
|
| +int32_t CBC_BarcodeMetadata::getColumnCount()
|
| {
|
| return m_columnCount;
|
| }
|
| -FX_INT32 CBC_BarcodeMetadata::getErrorCorrectionLevel()
|
| +int32_t CBC_BarcodeMetadata::getErrorCorrectionLevel()
|
| {
|
| return m_errorCorrectionLevel;
|
| }
|
| -FX_INT32 CBC_BarcodeMetadata::getRowCount()
|
| +int32_t CBC_BarcodeMetadata::getRowCount()
|
| {
|
| return m_rowCount;
|
| }
|
| -FX_INT32 CBC_BarcodeMetadata::getRowCountUpperPart()
|
| +int32_t CBC_BarcodeMetadata::getRowCountUpperPart()
|
| {
|
| return m_rowCountUpperPart;
|
| }
|
| -FX_INT32 CBC_BarcodeMetadata::getRowCountLowerPart()
|
| +int32_t CBC_BarcodeMetadata::getRowCountLowerPart()
|
| {
|
| return m_rowCountLowerPart;
|
| }
|
|
|