fix encoding problem

This commit is contained in:
GenevensiS
2025-12-25 12:05:11 +01:00
parent b5cac4c6ef
commit 3d0f21d483
2 changed files with 4 additions and 4 deletions
+1 -3
View File
@@ -25,7 +25,5 @@ static String generate_uid() {
for (i = 0; i < 32; i++) {
ss << dis(gen);
};
//return ss.str();
String wxString(ss.str().c_str(), wxConvUTF8);
return wxString;
return String(ss.str().c_str(), wxConvUTF8);
}