1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-15 07:40:23 +02:00

No, you should never have _("") in code, because you can't translate an empty

string (and anyway it has special meanings in gettext)
This commit is contained in:
richardash1981 2010-06-29 20:41:14 +00:00
parent e982fdb716
commit 2362728838

View File

@ -222,7 +222,7 @@ void TimeScaleDialog::PopulateOrExchange(ShuttleGui & S)
S.StartMultiColumn(1, wxCENTER);
{
m_pTextCtrl_RatePercentChangeStart = S.Id(ID_TEXT_RATE_PERCENTCHANGE_START)
.AddTextBox(_(""), wxT(""), 12);
.AddTextBox(wxT(""), wxT(""), 12);
m_pTextCtrl_RatePercentChangeStart->SetValidator(numvld);
}
S.EndMultiColumn();
@ -241,7 +241,7 @@ void TimeScaleDialog::PopulateOrExchange(ShuttleGui & S)
S.StartMultiColumn(1, wxCENTER);
{
m_pTextCtrl_RatePercentChangeEnd = S.Id(ID_TEXT_RATE_PERCENTCHANGE_END)
.AddTextBox(_(""), wxT(""), 12);
.AddTextBox(wxT(""), wxT(""), 12);
m_pTextCtrl_RatePercentChangeEnd->SetValidator(numvld);
}
S.EndMultiColumn();