aboutsummaryrefslogtreecommitdiff
path: root/src/util/string.cpp
diff options
context:
space:
mode:
authorDesour <ds.desour@proton.me>2023-03-03 01:18:38 +0100
committersfan5 <sfan5@live.de>2023-04-08 20:17:50 +0200
commit67068cfaf43ef95e526401d9f788790516b9f8ed (patch)
treef4e219f632bff88aa0c798b42b4a27e2e353acef /src/util/string.cpp
parent35929d27e3a93085c3a27180c1805711dcfe95d5 (diff)
downloadminetest-67068cfaf43ef95e526401d9f788790516b9f8ed.tar.xz
Get rid of wgettext
Diffstat (limited to 'src/util/string.cpp')
-rw-r--r--src/util/string.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/util/string.cpp b/src/util/string.cpp
index 778e4d1e1..5076a69ed 100644
--- a/src/util/string.cpp
+++ b/src/util/string.cpp
@@ -161,15 +161,6 @@ std::string wide_to_utf8(const std::wstring &input)
#endif // _WIN32
-wchar_t *utf8_to_wide_c(const char *str)
-{
- std::wstring ret = utf8_to_wide(std::string(str));
- size_t len = ret.length();
- wchar_t *ret_c = new wchar_t[len + 1];
- memcpy(ret_c, ret.c_str(), (len + 1) * sizeof(wchar_t));
- return ret_c;
-}
-
std::string urlencode(const std::string &str)
{