Bug 2384 - Filter Curve EQ error in non-English locale

This commit is contained in:
Leland Lucius 2020-04-04 02:54:55 -05:00
parent abf0f8157e
commit c840133dd8
1 changed files with 2 additions and 2 deletions

View File

@ -1582,7 +1582,7 @@ void EffectEqualization::LoadCurves(const wxString &fileName, bool append)
(void)fileName;
(void)append;
mCurves.clear();
mCurves.push_back( _("unnamed") ); // we still need a default curve to use
mCurves.push_back( wxT("unnamed") ); // we still need a default curve to use
#else
// Construct normal curve filename
//
@ -1678,7 +1678,7 @@ void EffectEqualization::UpdateDefaultCurves(bool updateAll /* false */)
return;
/* i18n-hint: name of the 'unnamed' custom curve */
wxString unnamed = _("unnamed");
wxString unnamed = wxT("unnamed");
// Save the "unnamed" curve and remove it so we can add it back as the final curve.
EQCurve userUnnamed(wxT("temp"));