From 4c3debb3c91f5842784be30a911b52cdabcab7df Mon Sep 17 00:00:00 2001 From: tsepez Date: Fri, 8 Apr 2016 12:20:38 -0700 Subject: Rename both As{Byte,Wide}StringC() helpers to AsStringC(). The naming is redundant given the base type, and will stand in the way of consolidating Byte and Wide code. BUG= Review URL: https://codereview.chromium.org/1862123003 --- xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp') diff --git a/xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp b/xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp index f767ffa169..f3c39f2491 100644 --- a/xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp +++ b/xfa/fxbarcode/oned/BC_OnedCodaBarReader.cpp @@ -107,7 +107,7 @@ CFX_ByteString CBC_OnedCodaBarReader::DecodeRow(int32_t rowNumber, } if (result.GetLength() < 5) { int32_t index = - temp.Find(result.Mid(1, result.GetLength() - 1).AsByteStringC()); + temp.Find(result.Mid(1, result.GetLength() - 1).AsStringC()); if (index == len - (result.GetLength() - 1)) { e = BCExceptionNotFound; return ""; -- cgit v1.2.3