| 260 | } |
| 261 | |
| 262 | std::string ConvertStringEncoding(const std::string& str) { |
| 263 | return QString::fromStdString(str).toLocal8Bit().toStdString(); |
| 264 | } |
| 265 | |
| 266 | std::string Utf16ToUtf8(const char16_t* u16str) { |
| 267 | if (u16str == nullptr) { |
no outgoing calls
no test coverage detected