| Index: xfa/fxbarcode/cbc_qrcode.h
|
| diff --git a/xfa/fxbarcode/cbc_qrcode.h b/xfa/fxbarcode/cbc_qrcode.h
|
| index e3b554b109c830f856307817648f7d926c234df0..ac2d93d9151dc98780f01497166b6a604cebb4e7 100644
|
| --- a/xfa/fxbarcode/cbc_qrcode.h
|
| +++ b/xfa/fxbarcode/cbc_qrcode.h
|
| @@ -18,17 +18,17 @@ class CBC_QRCode : public CBC_CodeBase {
|
| ~CBC_QRCode() override;
|
|
|
| // CBC_CodeBase:
|
| - 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 SetVersion(int32_t version);
|
| - FX_BOOL SetErrorCorrectionLevel(int32_t level);
|
| + bool SetVersion(int32_t version);
|
| + bool SetErrorCorrectionLevel(int32_t level);
|
| };
|
|
|
| #endif // XFA_FXBARCODE_CBC_QRCODE_H_
|
|
|