1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 07:31:19 +01:00

wxString in Nyquist prompt makes trip to UTF8 and back properly...

... Simple test:  In Nyquist prompt enter

(progn "Ü")

Using Alt+U, U.

Formerly it came back mis-encoded.
This commit is contained in:
Paul Licameli
2018-02-27 01:35:01 -05:00
parent 6d687136aa
commit f10b9c68ec

View File

@@ -1861,7 +1861,7 @@ bool NyquistEffect::ParseProgram(wxInputStream & stream)
return false;
}
wxTextInputStream pgm(stream);
wxTextInputStream pgm(stream, wxT(" \t"), wxConvUTF8);
mCmd = wxT("");
mIsSal = false;