diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-03-13 15:16:00 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-03-13 15:16:00 +0000 |
commit | 7a1aa5f659110e99950b00b6b326b41436872635 (patch) | |
tree | 16d89f9e2fc865b1a7a7727190938ad8499551e5 /fpdfsdk | |
parent | 0c6b98182403868334b4dfe4852caa4d0e2ba272 (diff) | |
download | pdfium-7a1aa5f659110e99950b00b6b326b41436872635.tar.xz |
Remove usage of FXSYS_*ASCIIlower/upper methodschromium/3370
This replaces them with equivalent FXSYS_*wlower/upper methods, which
uses ICU to perform the correct Unicode operations.
BUG=pdfium:1035
Change-Id: I432db5bef9eda71762016b619d93155949d054db
Reviewed-on: https://pdfium-review.googlesource.com/28530
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/pwl/cpwl_list_impl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fpdfsdk/pwl/cpwl_list_impl.cpp b/fpdfsdk/pwl/cpwl_list_impl.cpp index 561ef1b9f9..8795a67bcd 100644 --- a/fpdfsdk/pwl/cpwl_list_impl.cpp +++ b/fpdfsdk/pwl/cpwl_list_impl.cpp @@ -608,8 +608,7 @@ int32_t CPWL_ListCtrl::FindNext(int32_t nIndex, wchar_t nChar) const { nCircleIndex = 0; if (Item* pListItem = m_ListItems[nCircleIndex].get()) { - if (FXSYS_toASCIIupper(pListItem->GetFirstChar()) == - FXSYS_toASCIIupper(nChar)) + if (FXSYS_towupper(pListItem->GetFirstChar()) == FXSYS_towupper(nChar)) return nCircleIndex; } } |