mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 14:02:57 +02:00
AddCheckBox takes a bool for initial state, not string
This commit is contained in:
@@ -586,7 +586,7 @@ to download or locate the FFmpeg libraries."
|
||||
|
||||
int dontShowDlg = 0;
|
||||
gPrefs->Read(wxT("/FFmpeg/NotFoundDontShow"),&dontShowDlg,0);
|
||||
mDontShow = S.AddCheckBox(_("Do not show this warning again"),dontShowDlg ? wxT("true") : wxT("false"));
|
||||
mDontShow = S.AddCheckBox(_("Do not show this warning again"),dontShowDlg);
|
||||
|
||||
S.AddStandardButtons(eOkButton);
|
||||
}
|
||||
|
Reference in New Issue
Block a user