| Index: xfa/fxbarcode/pdf417/BC_PDF417Writer.h
|
| diff --git a/xfa/fxbarcode/pdf417/BC_PDF417Writer.h b/xfa/fxbarcode/pdf417/BC_PDF417Writer.h
|
| index 7f7195948c9deb009a95e63d26e48ac03781c67a..e16c51474ee3abdf530249b65e36b9e9c07e0b51 100644
|
| --- a/xfa/fxbarcode/pdf417/BC_PDF417Writer.h
|
| +++ b/xfa/fxbarcode/pdf417/BC_PDF417Writer.h
|
| @@ -14,12 +14,16 @@
|
| class CBC_PDF417Writer : public CBC_TwoDimWriter {
|
| public:
|
| CBC_PDF417Writer();
|
| - virtual ~CBC_PDF417Writer();
|
| + ~CBC_PDF417Writer() override;
|
| +
|
| uint8_t* Encode(const CFX_WideString& contents,
|
| int32_t& outWidth,
|
| int32_t& outHeight,
|
| int32_t& e);
|
| - FX_BOOL SetErrorCorrectionLevel(int32_t level);
|
| +
|
| + // CBC_TwoDimWriter
|
| + FX_BOOL SetErrorCorrectionLevel(int32_t level) override;
|
| +
|
| void SetTruncated(FX_BOOL truncated);
|
|
|
| private:
|
|
|