- make StringHelper::toUtf8() synonym for makeUtf8()

This commit is contained in:
2018-12-27 13:31:03 +02:00
parent 122876e537
commit d5b4c1874a
2 changed files with 6 additions and 0 deletions

View File

@@ -53,6 +53,11 @@ std::string StringHelper::makeUtf8(const std::tstring &arg)
#endif
}
std::string StringHelper::toUtf8(const std::tstring &arg)
{
return makeUtf8(arg);
}
std::tstring StringHelper::makeTstring(const std::string& arg)
{
#if defined(TARGET_WIN)