| 346 | } |
| 347 | |
| 348 | QString NoteNameManager::getNoteString(int noteNum, KeySignature::Type key) const |
| 349 | { |
| 350 | return QString("%1%2").arg(list_->at(key).at(noteNum % 12), -2, QChar('-')).arg(noteNum / 12); |
| 351 | } |
| 352 | |
| 353 | QString NoteNameManager::getKeyName(KeySignature::Type key) const |
| 354 | { |
no test coverage detected