| Index: xfa/fxbarcode/oned/BC_OnedCode128Writer.h
|
| diff --git a/xfa/fxbarcode/oned/BC_OnedCode128Writer.h b/xfa/fxbarcode/oned/BC_OnedCode128Writer.h
|
| index 7c85af102d4b0753ccb745293fa20fda3621935a..60a2f03acc2d0a85b50fa3cd1d615d004379187b 100644
|
| --- a/xfa/fxbarcode/oned/BC_OnedCode128Writer.h
|
| +++ b/xfa/fxbarcode/oned/BC_OnedCode128Writer.h
|
| @@ -33,17 +33,15 @@ class CBC_OnedCode128Writer : public CBC_OneDimWriter {
|
| int32_t& outLength,
|
| int32_t& e) override;
|
|
|
| - FX_BOOL CheckContentValidity(const CFX_WideStringC& contents) override;
|
| + bool CheckContentValidity(const CFX_WideStringC& contents) override;
|
| CFX_WideString FilterContents(const CFX_WideStringC& contents) override;
|
|
|
| - FX_BOOL SetTextLocation(BC_TEXT_LOC location);
|
| + bool SetTextLocation(BC_TEXT_LOC location);
|
|
|
| BC_TYPE GetType();
|
|
|
| private:
|
| - FX_BOOL IsDigits(const CFX_ByteString& contents,
|
| - int32_t start,
|
| - int32_t length);
|
| + bool IsDigits(const CFX_ByteString& contents, int32_t start, int32_t length);
|
| int32_t Encode128B(const CFX_ByteString& contents,
|
| CFX_ArrayTemplate<const int32_t*>* patterns);
|
| int32_t Encode128C(const CFX_ByteString& contents,
|
|
|