| 78 | ProjectAudioManager::~ProjectAudioManager() = default; |
| 79 | |
| 80 | static TranslatableString FormatRate( int rate ) |
| 81 | { |
| 82 | if (rate > 0) { |
| 83 | return XO("Actual Rate: %d").Format( rate ); |
| 84 | } |
| 85 | else |
| 86 | // clear the status field |
| 87 | return {}; |
| 88 | } |
| 89 | |
| 90 | auto ProjectAudioManager::StatusWidthFunction( |
| 91 | const AudacityProject &project, StatusBarField field ) |
no outgoing calls
no test coverage detected