diff options
Diffstat (limited to 'xfa/fxbarcode/cbc_code128.cpp')
-rw-r--r-- | xfa/fxbarcode/cbc_code128.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/xfa/fxbarcode/cbc_code128.cpp b/xfa/fxbarcode/cbc_code128.cpp index 8615cd40df..99c3c21e0f 100644 --- a/xfa/fxbarcode/cbc_code128.cpp +++ b/xfa/fxbarcode/cbc_code128.cpp @@ -28,19 +28,19 @@ CBC_Code128::CBC_Code128(BC_TYPE type) CBC_Code128::~CBC_Code128() {} -FX_BOOL CBC_Code128::SetTextLocation(BC_TEXT_LOC location) { +bool CBC_Code128::SetTextLocation(BC_TEXT_LOC location) { if (m_pBCWriter) return static_cast<CBC_OnedCode128Writer*>(m_pBCWriter.get()) ->SetTextLocation(location); - return FALSE; + return false; } -FX_BOOL CBC_Code128::Encode(const CFX_WideStringC& contents, - FX_BOOL isDevice, - int32_t& e) { +bool CBC_Code128::Encode(const CFX_WideStringC& contents, + bool isDevice, + int32_t& e) { if (contents.IsEmpty()) { e = BCExceptionNoContents; - return FALSE; + return false; } BCFORMAT format = BCFORMAT_CODE_128; int32_t outWidth = 0; @@ -58,28 +58,28 @@ FX_BOOL CBC_Code128::Encode(const CFX_WideStringC& contents, CFX_ByteString byteString = encodeContents.UTF8Encode(); uint8_t* data = static_cast<CBC_OnedCode128Writer*>(m_pBCWriter.get()) ->Encode(byteString, format, outWidth, outHeight, e); - BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); + BC_EXCEPTION_CHECK_ReturnValue(e, false); static_cast<CBC_OneDimWriter*>(m_pBCWriter.get()) ->RenderResult(encodeContents.AsStringC(), data, outWidth, isDevice, e); FX_Free(data); - BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); - return TRUE; + BC_EXCEPTION_CHECK_ReturnValue(e, false); + return true; } -FX_BOOL CBC_Code128::RenderDevice(CFX_RenderDevice* device, - const CFX_Matrix* matrix, - int32_t& e) { +bool CBC_Code128::RenderDevice(CFX_RenderDevice* device, + const CFX_Matrix* matrix, + int32_t& e) { static_cast<CBC_OneDimWriter*>(m_pBCWriter.get()) ->RenderDeviceResult(device, matrix, m_renderContents.AsStringC(), e); - BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); - return TRUE; + BC_EXCEPTION_CHECK_ReturnValue(e, false); + return true; } -FX_BOOL CBC_Code128::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) { +bool CBC_Code128::RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) { static_cast<CBC_OneDimWriter*>(m_pBCWriter.get()) ->RenderBitmapResult(pOutBitmap, m_renderContents.AsStringC(), e); - BC_EXCEPTION_CHECK_ReturnValue(e, FALSE); - return TRUE; + BC_EXCEPTION_CHECK_ReturnValue(e, false); + return true; } BC_TYPE CBC_Code128::GetType() { |