1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-08 12:42:03 +01:00

Define and use function Verbatim...

... in cases of "TranslatableString" that are not really translated.

This makes it easier to scan the code for such unusual constructions of
TranslatableString, distinct from mere mentions of the TranslatableString type.
This commit is contained in:
Paul Licameli
2019-12-19 16:20:41 -05:00
parent a70524446e
commit e3ea93a624
27 changed files with 92 additions and 78 deletions

View File

@@ -988,8 +988,8 @@ void PluginRegistrationDialog::OnOK(wxCommandEvent & WXUNUSED(evt))
// we will leave the project window in an unusable state on OSX.
// See bug #1192.
{
ProgressDialog progress(
TranslatableString{ GetTitle() }, msg, pdlgHideStopButton);
ProgressDialog progress{
Verbatim( GetTitle() ), msg, pdlgHideStopButton };
progress.CenterOnParent();
int i = 0;