| 146 | } |
| 147 | |
| 148 | TranslatableString PitchName_Absolute(const double dMIDInote, const PitchNameChoice choice) |
| 149 | { |
| 150 | // The format string is not localized. Should it be? |
| 151 | return Verbatim( wxT("%s%d") ) |
| 152 | .Format( PitchName(dMIDInote, choice), PitchOctave(dMIDInote) ); |
| 153 | } |
| 154 | |
| 155 | double PitchToMIDInote(const unsigned int nPitchIndex, const int nPitchOctave) |
| 156 | { |
no test coverage detected