diff options
Diffstat (limited to 'xfa/fxbarcode/cbc_codebase.cpp')
-rw-r--r-- | xfa/fxbarcode/cbc_codebase.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/xfa/fxbarcode/cbc_codebase.cpp b/xfa/fxbarcode/cbc_codebase.cpp index c7d4f19118..5b4cb713bb 100644 --- a/xfa/fxbarcode/cbc_codebase.cpp +++ b/xfa/fxbarcode/cbc_codebase.cpp @@ -27,23 +27,23 @@ CBC_CodeBase::CBC_CodeBase(CBC_Writer* pWriter) : m_pBCWriter(pWriter) {} CBC_CodeBase::~CBC_CodeBase() {} -FX_BOOL CBC_CodeBase::SetCharEncoding(int32_t encoding) { +bool CBC_CodeBase::SetCharEncoding(int32_t encoding) { return m_pBCWriter && m_pBCWriter->SetCharEncoding(encoding); } -FX_BOOL CBC_CodeBase::SetModuleHeight(int32_t moduleHeight) { +bool CBC_CodeBase::SetModuleHeight(int32_t moduleHeight) { return m_pBCWriter && m_pBCWriter->SetModuleHeight(moduleHeight); } -FX_BOOL CBC_CodeBase::SetModuleWidth(int32_t moduleWidth) { +bool CBC_CodeBase::SetModuleWidth(int32_t moduleWidth) { return m_pBCWriter && m_pBCWriter->SetModuleWidth(moduleWidth); } -FX_BOOL CBC_CodeBase::SetHeight(int32_t height) { +bool CBC_CodeBase::SetHeight(int32_t height) { return m_pBCWriter && m_pBCWriter->SetHeight(height); } -FX_BOOL CBC_CodeBase::SetWidth(int32_t width) { +bool CBC_CodeBase::SetWidth(int32_t width) { return m_pBCWriter && m_pBCWriter->SetWidth(width); } |