Remove null terminating chars from profile names before using them in ProfileManager
parent
6d562d8d37
commit
2eb43fa445
@ -1,10 +1,13 @@
|
||||
#ifndef STRING_UTILS_H
|
||||
#define STRING_UTILS_H
|
||||
|
||||
#include <string>
|
||||
|
||||
class StringUtils
|
||||
{
|
||||
public:
|
||||
static const char* wchar_to_char(const wchar_t* pwchar);
|
||||
static const std::string remove_null_terminating_chars(std::string input);
|
||||
};
|
||||
|
||||
#endif // STRING_UTILS_H
|
||||
|
||||
Loading…
Reference in New Issue