summaryrefslogtreecommitdiff
path: root/core/fxcrt/fx_basic_utf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/fx_basic_utf.cpp')
-rw-r--r--core/fxcrt/fx_basic_utf.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/fxcrt/fx_basic_utf.cpp b/core/fxcrt/fx_basic_utf.cpp
index fcfd5934e4..084553b671 100644
--- a/core/fxcrt/fx_basic_utf.cpp
+++ b/core/fxcrt/fx_basic_utf.cpp
@@ -11,8 +11,8 @@ void CFX_UTF8Decoder::Clear() {
m_PendingBytes = 0;
}
-void CFX_UTF8Decoder::AppendChar(uint32_t ch) {
- m_Buffer.AppendChar((wchar_t)ch);
+void CFX_UTF8Decoder::AppendCodePoint(uint32_t ch) {
+ m_Buffer.AppendChar(static_cast<wchar_t>(ch));
}
void CFX_UTF8Decoder::Input(uint8_t byte) {
@@ -26,7 +26,7 @@ void CFX_UTF8Decoder::Input(uint8_t byte) {
m_PendingBytes--;
m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
if (m_PendingBytes == 0) {
- AppendChar(m_PendingChar);
+ AppendCodePoint(m_PendingChar);
}
} else if (byte < 0xe0) {
m_PendingBytes = 1;