summaryrefslogtreecommitdiff
path: root/core/fxcrt/cfx_bytestring.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/fxcrt/cfx_bytestring.cpp')
-rw-r--r--core/fxcrt/cfx_bytestring.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/core/fxcrt/cfx_bytestring.cpp b/core/fxcrt/cfx_bytestring.cpp
index 77e0ecd610..f6634fc51d 100644
--- a/core/fxcrt/cfx_bytestring.cpp
+++ b/core/fxcrt/cfx_bytestring.cpp
@@ -710,12 +710,6 @@ CFX_WideString CFX_ByteString::UTF8Decode() const {
}
// static
-CFX_ByteString CFX_ByteString::FromUnicode(const wchar_t* str, FX_STRSIZE len) {
- FX_STRSIZE str_len = len >= 0 ? len : FXSYS_wcslen(str);
- return FromUnicode(CFX_WideString(str, str_len));
-}
-
-// static
CFX_ByteString CFX_ByteString::FromUnicode(const CFX_WideString& str) {
return GetByteString(0, str.AsStringC());
}