mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 22:12:58 +02:00
Scripting: Unicode chars in responses are now OK.
This is also relevant to batch scripting. We need to stay in UTF8 to be safe. Thanks to Robert Hänggi for reporting this issue.
This commit is contained in:
@@ -48,7 +48,7 @@ class Response {
|
||||
std::string mMessage;
|
||||
public:
|
||||
Response(const wxString &response)
|
||||
: mMessage(response.mb_str())
|
||||
: mMessage(response.utf8_str())
|
||||
{ }
|
||||
|
||||
wxString GetMessage()
|
||||
|
Reference in New Issue
Block a user