From 7d762c5954ffb1d2fa67706625348bf0cf70b050 Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Wed, 1 Sep 2010 22:28:23 +0000 Subject: [PATCH] Add missing ".c_str()" to Printf arg. --- src/effects/nyquist/Nyquist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/effects/nyquist/Nyquist.cpp b/src/effects/nyquist/Nyquist.cpp index 37aa5c5ba..53a382fe7 100644 --- a/src/effects/nyquist/Nyquist.cpp +++ b/src/effects/nyquist/Nyquist.cpp @@ -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);