diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2017-08-10 15:27:10 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-10 19:50:08 +0000 |
commit | a12812924fc844823025fa383cc3ec8c1d1e2d4f (patch) | |
tree | cb066bac0fffa5e9019ffc047838bcdd6a0c376b /core/fxcrt/fx_basic.h | |
parent | 00d2ad12fa9d37581fd12d2ea5ea702c9e2e2e16 (diff) | |
download | pdfium-a12812924fc844823025fa383cc3ec8c1d1e2d4f.tar.xz |
Rename CFX_UTF8Decoder::AppendChar to AppendCodePoint.
Change-Id: Iec5523492eac3910f5ed105370e9092fd992b1b9
Reviewed-on: https://pdfium-review.googlesource.com/10471
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_basic.h')
-rw-r--r-- | core/fxcrt/fx_basic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_basic.h b/core/fxcrt/fx_basic.h index c6ffc0d535..db0072a5ac 100644 --- a/core/fxcrt/fx_basic.h +++ b/core/fxcrt/fx_basic.h @@ -117,7 +117,7 @@ class CFX_UTF8Decoder { void Clear(); void Input(uint8_t byte); - void AppendChar(uint32_t ch); + void AppendCodePoint(uint32_t ch); void ClearStatus() { m_PendingBytes = 0; } CFX_WideStringC GetResult() const { return m_Buffer.AsStringC(); } |