diff options
author | tsepez <tsepez@chromium.org> | 2016-11-02 15:43:18 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-02 15:43:19 -0700 |
commit | d19e912dd469e4bdad9f3020e1f6eb98f10f3470 (patch) | |
tree | 239cb568a80445f14a1ab9b63dcaaddcce67e1cc /xfa/fxbarcode/cbc_codebase.cpp | |
parent | 12f3e4a58f05850b93af35619cb04f0231d86acc (diff) | |
download | pdfium-d19e912dd469e4bdad9f3020e1f6eb98f10f3470.tar.xz |
Remove FX_BOOL from xfa.
Review-Url: https://codereview.chromium.org/2467203003
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); } |