mirror of
https://github.com/cookiengineer/audacity
synced 2026-04-07 23:07:45 +02:00
Rewrite empty prompts to ShuttleGUI functions as {} ...
... so we might more easily redefine the type of the function argument, some other day (not this release)
This commit is contained in:
@@ -393,12 +393,12 @@ FreqWindow::FreqWindow(wxWindow * parent, wxWindowID id,
|
||||
S.AddPrompt(_("Cursor:"));
|
||||
|
||||
S.SetStyle(wxTE_READONLY);
|
||||
mCursorText = S.AddTextBox(wxT(""), wxT(""), 10);
|
||||
mCursorText = S.AddTextBox( {}, wxT(""), 10);
|
||||
|
||||
S.AddPrompt(_("Peak:"));
|
||||
|
||||
S.SetStyle(wxTE_READONLY);
|
||||
mPeakText = S.AddTextBox(wxT(""), wxT(""), 10);
|
||||
mPeakText = S.AddTextBox( {}, wxT(""), 10);
|
||||
S.AddSpace(5);
|
||||
|
||||
mGridOnOff = S.Id(GridOnOffID).AddCheckBox(_("&Grids"), wxT("false"));
|
||||
|
||||
Reference in New Issue
Block a user