| Index: xfa/fxbarcode/cbc_codabar.h
|
| diff --git a/xfa/fxbarcode/cbc_codabar.h b/xfa/fxbarcode/cbc_codabar.h
|
| index 2a4ee79e68645c06691b4f3350c3b434dd68a251..28631a9cb574cf099831d979a94fc07de6c5927f 100644
|
| --- a/xfa/fxbarcode/cbc_codabar.h
|
| +++ b/xfa/fxbarcode/cbc_codabar.h
|
| @@ -18,19 +18,19 @@ class CBC_Codabar : public CBC_OneCode {
|
| ~CBC_Codabar() override;
|
|
|
| // CBC_OneCode:
|
| - FX_BOOL Encode(const CFX_WideStringC& contents,
|
| - FX_BOOL isDevice,
|
| - int32_t& e) override;
|
| - FX_BOOL RenderDevice(CFX_RenderDevice* device,
|
| - const CFX_Matrix* matrix,
|
| - int32_t& e) override;
|
| - FX_BOOL RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) override;
|
| + bool Encode(const CFX_WideStringC& contents,
|
| + bool isDevice,
|
| + int32_t& e) override;
|
| + bool RenderDevice(CFX_RenderDevice* device,
|
| + const CFX_Matrix* matrix,
|
| + int32_t& e) override;
|
| + bool RenderBitmap(CFX_DIBitmap*& pOutBitmap, int32_t& e) override;
|
| BC_TYPE GetType() override;
|
|
|
| - FX_BOOL SetStartChar(FX_CHAR start);
|
| - FX_BOOL SetEndChar(FX_CHAR end);
|
| - FX_BOOL SetTextLocation(BC_TEXT_LOC location);
|
| - FX_BOOL SetWideNarrowRatio(int32_t ratio);
|
| + bool SetStartChar(FX_CHAR start);
|
| + bool SetEndChar(FX_CHAR end);
|
| + bool SetTextLocation(BC_TEXT_LOC location);
|
| + bool SetWideNarrowRatio(int32_t ratio);
|
|
|
| private:
|
| CFX_WideString m_renderContents;
|
|
|