1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-31 16:09:28 +02:00

Possible fix for Linux build bug: missing c_str().

This commit is contained in:
james.k.crook@gmail.com 2012-03-31 15:48:56 +00:00
parent 6d55f6a2af
commit 1d476de431

View File

@ -168,7 +168,7 @@ void InitPreferences()
if(!gone)
{
wxString fileName = fn.GetFullPath();
wxMessageBox(wxString::Format( _("Failed to remove %s"), fileName), _("Failed!"));
wxMessageBox(wxString::Format( _("Failed to remove %s"), fileName.c_str()), _("Failed!"));
}
}