diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2017-09-05 12:07:02 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-05 17:27:26 +0000 |
commit | 1eae16d3b17d6b396969ecf81f6546f5a1d72dfd (patch) | |
tree | 6819d423b15bd05d68b296c6769a6bf531850dbe /fxbarcode/cbc_codabar.cpp | |
parent | e7767a0c98548395c95b9f88fc30cf7b318f1939 (diff) | |
download | pdfium-1eae16d3b17d6b396969ecf81f6546f5a1d72dfd.tar.xz |
Remove isDevice parameter from barcode Render().
isDevice is currently false in tests and fuzzers and true in real
usage. This CL changes it all to true.
Change-Id: Idea14795d7f0bb70031e04e5c58e248de72fd39e
Reviewed-on: https://pdfium-review.googlesource.com/13130
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxbarcode/cbc_codabar.cpp')
-rw-r--r-- | fxbarcode/cbc_codabar.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fxbarcode/cbc_codabar.cpp b/fxbarcode/cbc_codabar.cpp index d1501212cc..a8729b64c6 100644 --- a/fxbarcode/cbc_codabar.cpp +++ b/fxbarcode/cbc_codabar.cpp @@ -47,7 +47,7 @@ bool CBC_Codabar::SetWideNarrowRatio(int8_t ratio) { return GetOnedCodaBarWriter()->SetWideNarrowRatio(ratio); } -bool CBC_Codabar::Encode(const CFX_WideStringC& contents, bool isDevice) { +bool CBC_Codabar::Encode(const CFX_WideStringC& contents) { if (contents.IsEmpty()) return false; @@ -64,8 +64,8 @@ bool CBC_Codabar::Encode(const CFX_WideStringC& contents, bool isDevice) { if (!data) return false; - return pWriter->RenderResult(filtercontents.AsStringC(), data.get(), outWidth, - isDevice); + return pWriter->RenderResult(filtercontents.AsStringC(), data.get(), + outWidth); } bool CBC_Codabar::RenderDevice(CFX_RenderDevice* device, |