diff options
Diffstat (limited to 'fxbarcode/cbc_code39.cpp')
-rw-r--r-- | fxbarcode/cbc_code39.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fxbarcode/cbc_code39.cpp b/fxbarcode/cbc_code39.cpp index 97debaa88f..a46af14b9a 100644 --- a/fxbarcode/cbc_code39.cpp +++ b/fxbarcode/cbc_code39.cpp @@ -31,7 +31,7 @@ CBC_Code39::CBC_Code39() CBC_Code39::~CBC_Code39() {} -bool CBC_Code39::Encode(const CFX_WideStringC& contents, bool isDevice) { +bool CBC_Code39::Encode(const CFX_WideStringC& contents) { if (contents.IsEmpty()) return false; @@ -47,8 +47,8 @@ bool CBC_Code39::Encode(const CFX_WideStringC& contents, bool isDevice) { pWriter->Encode(byteString, format, outWidth, outHeight)); if (!data) return false; - return pWriter->RenderResult(renderContents.AsStringC(), data.get(), outWidth, - isDevice); + return pWriter->RenderResult(renderContents.AsStringC(), data.get(), + outWidth); } bool CBC_Code39::RenderDevice(CFX_RenderDevice* device, |