1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-08 14:13:57 +01:00

Add missing ".c_str()" to Printf arg.

This commit is contained in:
v.audacity
2010-09-01 22:28:23 +00:00
parent deabcfe5c1
commit 7d762c5954

View File

@@ -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());
tokens[3], mFileName.GetFullPath().c_str());
// Too disturbing to show alert before Audacity frame is up.
// wxMessageBox(str, wxT("Nyquist Warning"), wxOK | wxICON_EXCLAMATION);