summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_utf8decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/cfx_utf8decoder.h')
-rw-r--r--core/fxcrt/cfx_utf8decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/cfx_utf8decoder.h b/core/fxcrt/cfx_utf8decoder.h
index dcf5ef796a..1cafbe4472 100644
--- a/core/fxcrt/cfx_utf8decoder.h
+++ b/core/fxcrt/cfx_utf8decoder.h
@@ -17,7 +17,7 @@ class CFX_UTF8Decoder {
void Input(uint8_t byte);
void AppendCodePoint(uint32_t ch);
void ClearStatus() { m_PendingBytes = 0; }
- CFX_WideStringC GetResult() const { return m_Buffer.AsStringC(); }
+ WideStringView GetResult() const { return m_Buffer.AsStringView(); }
private:
int m_PendingBytes;