| 387 | } |
| 388 | |
| 389 | void CFamiTrackerModule::SetHighlight(const stHighlight &hl) { // // // |
| 390 | VisitSongs([&hl] (CSongData &song) { |
| 391 | song.SetRowHighlight(hl); |
| 392 | }); |
| 393 | } |
| 394 | |
| 395 | void CFamiTrackerModule::SetHighlight(unsigned song, const stHighlight &hl) { // // // |
| 396 | GetSong(song)->SetRowHighlight(hl); |
nothing calls this directly
no test coverage detected