1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 08:59:28 +02:00
This commit is contained in:
v.audacity 2012-07-19 04:38:00 +00:00
parent 5a422b05a4
commit d74e5fa586

View File

@ -184,8 +184,8 @@ bool EffectNormalize::Process()
// Process only if the right marker is to the right of the left marker // Process only if the right marker is to the right of the left marker
if (mCurT1 > mCurT0) { if (mCurT1 > mCurT0) {
wxString msg, trackName; wxString msg;
trackName = wxString::Format(track->GetName().c_str()); wxString trackName = track->GetName();
if(!track->GetLinked() || mStereoInd) if(!track->GetLinked() || mStereoInd)
msg = topMsg + _("Analyzing: ") + trackName; msg = topMsg + _("Analyzing: ") + trackName;