diff options
Diffstat (limited to 'fxbarcode/cbc_code39.h')
-rw-r--r-- | fxbarcode/cbc_code39.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fxbarcode/cbc_code39.h b/fxbarcode/cbc_code39.h index 66974c0947..937673c740 100644 --- a/fxbarcode/cbc_code39.h +++ b/fxbarcode/cbc_code39.h @@ -21,7 +21,7 @@ class CBC_Code39 : public CBC_OneCode { ~CBC_Code39() override; // CBC_OneCode: - bool Encode(const CFX_WideStringC& contents) override; + bool Encode(const WideStringView& contents) override; bool RenderDevice(CFX_RenderDevice* device, const CFX_Matrix* matrix) override; BC_TYPE GetType() override; @@ -32,7 +32,7 @@ class CBC_Code39 : public CBC_OneCode { private: CBC_OnedCode39Writer* GetOnedCode39Writer(); - CFX_WideString m_renderContents; + WideString m_renderContents; }; #endif // FXBARCODE_CBC_CODE39_H_ |