1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-23 23:03:55 +02:00

SetClip, SetLabel, SetProject added

- SetTrack also updated with more options.
This commit is contained in:
James Crook
2018-02-09 19:12:25 +00:00
committed by Paul Licameli
parent 2180379a18
commit 1d9477a455
34 changed files with 729 additions and 168 deletions

View File

@@ -47,10 +47,10 @@ enum kVinyl
kVinyl_45,
kVinyl_78,
kVinyl_NA,
kNumVinyl
nVinyl
};
static const wxChar *kVinylStrings[kNumVinyl] =
static const wxChar *kVinylStrings[nVinyl] =
{
wxT("33\u2153"),
wxT("45"),
@@ -338,10 +338,10 @@ void EffectChangeSpeed::PopulateOrExchange(ShuttleGui & S)
/* i18n-hint: "rpm" is an English abbreviation meaning "revolutions per minute". */
S.AddUnits(_("Standard Vinyl rpm:"));
wxASSERT(kNumVinyl == WXSIZEOF(kVinylStrings));
wxASSERT(nVinyl == WXSIZEOF(kVinylStrings));
wxArrayString vinylChoices;
for (int i = 0; i < kNumVinyl; i++)
for (int i = 0; i < nVinyl; i++)
{
if (i == kVinyl_NA)
{