diff options
Diffstat (limited to 'xfa/fxbarcode/common/BC_CommonByteArray.cpp')
-rw-r--r-- | xfa/fxbarcode/common/BC_CommonByteArray.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxbarcode/common/BC_CommonByteArray.cpp b/xfa/fxbarcode/common/BC_CommonByteArray.cpp index afa8ac6836..71fa85f0c4 100644 --- a/xfa/fxbarcode/common/BC_CommonByteArray.cpp +++ b/xfa/fxbarcode/common/BC_CommonByteArray.cpp @@ -53,7 +53,7 @@ void CBC_CommonByteArray::Set(int32_t index, int32_t value) { int32_t CBC_CommonByteArray::Size() const { return m_size; } -FX_BOOL CBC_CommonByteArray::IsEmpty() const { +bool CBC_CommonByteArray::IsEmpty() const { return m_size == 0; } void CBC_CommonByteArray::AppendByte(int32_t value) { |