summaryrefslogtreecommitdiff
path: root/fxbarcode/datamatrix/BC_EdifactEncoder.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-01-12 21:49:50 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-01-12 21:49:50 +0000
commit53c4ba4011ab59ecc8406e144df8aaaa1169801b (patch)
treee35e5a2e9ae3dbc9e57d2ad28ded618e23019988 /fxbarcode/datamatrix/BC_EdifactEncoder.cpp
parent14e77443e92ce3fdf1cebe85f8f5c8fe705a1558 (diff)
downloadpdfium-53c4ba4011ab59ecc8406e144df8aaaa1169801b.tar.xz
Add jumbo build support for fxbarcode.
BUG=pdfium:964 Change-Id: Ic306a374bc9b710e2ac043eebe43504e5bd75926 Reviewed-on: https://pdfium-review.googlesource.com/22870 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'fxbarcode/datamatrix/BC_EdifactEncoder.cpp')
-rw-r--r--fxbarcode/datamatrix/BC_EdifactEncoder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/fxbarcode/datamatrix/BC_EdifactEncoder.cpp b/fxbarcode/datamatrix/BC_EdifactEncoder.cpp
index 438c87a38f..41180dcf51 100644
--- a/fxbarcode/datamatrix/BC_EdifactEncoder.cpp
+++ b/fxbarcode/datamatrix/BC_EdifactEncoder.cpp
@@ -33,7 +33,7 @@
namespace {
-WideString EncodeToCodewords(const WideString& sb, int32_t startPos) {
+WideString EncodeToEdifactCodewords(const WideString& sb, int32_t startPos) {
int32_t len = sb.GetLength() - startPos;
if (len == 0)
return WideString();
@@ -72,7 +72,7 @@ bool HandleEOD(CBC_EncoderContext* context, const WideString& buffer) {
}
int32_t restChars = count - 1;
- WideString encoded = EncodeToCodewords(buffer, 0);
+ WideString encoded = EncodeToEdifactCodewords(buffer, 0);
if (encoded.IsEmpty())
return false;
@@ -136,7 +136,7 @@ void CBC_EdifactEncoder::Encode(CBC_EncoderContext& context, int32_t& e) {
context.m_pos++;
int32_t count = buffer.GetLength();
if (count >= 4) {
- WideString encoded = EncodeToCodewords(buffer, 0);
+ WideString encoded = EncodeToEdifactCodewords(buffer, 0);
if (encoded.IsEmpty()) {
e = BCExceptionGeneric;
return;