| Index: xfa/src/fxbarcode/BC_LuminanceSource.cpp
|
| diff --git a/xfa/src/fxbarcode/BC_LuminanceSource.cpp b/xfa/src/fxbarcode/BC_LuminanceSource.cpp
|
| index e237454a8325a24393ba495f83ae724f03317adc..b656389c5ea443687bd712e176fff2cd527444b8 100644
|
| --- a/xfa/src/fxbarcode/BC_LuminanceSource.cpp
|
| +++ b/xfa/src/fxbarcode/BC_LuminanceSource.cpp
|
| @@ -22,17 +22,17 @@
|
|
|
| #include "barcode.h"
|
| #include "BC_LuminanceSource.h"
|
| -CBC_LuminanceSource::CBC_LuminanceSource(FX_INT32 width, FX_INT32 height): m_width(width), m_height(height)
|
| +CBC_LuminanceSource::CBC_LuminanceSource(int32_t width, int32_t height): m_width(width), m_height(height)
|
| {
|
| }
|
| CBC_LuminanceSource::~CBC_LuminanceSource()
|
| {
|
| }
|
| -FX_INT32 CBC_LuminanceSource::GetWidth()
|
| +int32_t CBC_LuminanceSource::GetWidth()
|
| {
|
| return m_width;
|
| }
|
| -FX_INT32 CBC_LuminanceSource::GetHeight()
|
| +int32_t CBC_LuminanceSource::GetHeight()
|
| {
|
| return m_height;
|
| }
|
|
|