mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 06:10:06 +02:00
Avoid passing a wxString to wxString::Printf()
This commit is contained in:
parent
f9be883b82
commit
ed7f94ca7d
@ -288,7 +288,7 @@ void EffectNyquist::Parse(wxString line)
|
||||
{
|
||||
wxString str;
|
||||
str.Printf(_("Bad Nyquist 'control' type specification: '%s' in plugin file '%s'.\nControl not created."),
|
||||
tokens[3], mFileName.GetFullPath().c_str());
|
||||
tokens[3].c_str(), mFileName.GetFullPath().c_str());
|
||||
|
||||
// Too disturbing to show alert before Audacity frame is up.
|
||||
// wxMessageBox(str, wxT("Nyquist Warning"), wxOK | wxICON_EXCLAMATION);
|
||||
|
Loading…
x
Reference in New Issue
Block a user