1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-01 07:33:44 +02:00

Rewrite one more PushState that is ifdef'd out

This commit is contained in:
Paul Licameli 2019-12-19 22:25:57 -05:00
parent 3a633e4fd8
commit 91ebadef81

View File

@ -861,10 +861,9 @@ void WaveTrackMenuTable::OnChannelChange(wxCommandEvent & event)
AudacityProject *const project = ::GetActiveProject();
/* i18n-hint: The strings name a track and a channel choice (mono, left, or right) */
ProjectHistory::Get( *project )
.PushState(wxString::Format(_("Changed '%s' to %s"),
pTrack->GetName(),
channelmsg),
_("Channel"));
.PushState(
XO("Changed '%s' to %s").Format( pTrack->GetName(), channelmsg ),
XO("Channel"));
mpData->result = RefreshCode::RefreshAll;
}
#endif