| 61 | { return VisitSettings<true>(S); } |
| 62 | |
| 63 | void CompareAudioCommand::PopulateOrExchange(ShuttleGui & S) |
| 64 | { |
| 65 | S.AddSpace(0, 5); |
| 66 | |
| 67 | S.StartMultiColumn(2, wxALIGN_CENTER); |
| 68 | { |
| 69 | S.TieTextBox(XXO("Threshold:"),errorThreshold); |
| 70 | } |
| 71 | S.EndMultiColumn(); |
| 72 | } |
| 73 | |
| 74 | // Update member variables with project selection data (and validate) |
| 75 | bool CompareAudioCommand::GetSelection(const CommandContext &context, AudacityProject &proj) |
nothing calls this directly
no test coverage detected