Code: Select all
S.TieChoice(_("Sample Rate Con&verter:"),
Resample::GetFastMethodKey(),
Resample::GetFastMethodDefault(),
mConverterNames,
mConverterLabels),
S.SetSizeHints(mConverterNames);
S.TieChoice(_("&Dither:"),
wxT("/Quality/DitherAlgorithm"),
Dither::none,
mDitherNames,
mDitherLabels);
S.SetSizeHints(mDitherNames);mConverterLabels),
is followed by a comma as opposed to the appropriate semi-colon. The proper usage can be seen in the next one which ends on the line which reads:
mDitherLabels);
Obviously, it compiles, but I am not sure what the current or future ramifications might be.