| 538 | |
| 539 | namespace { |
| 540 | std::shared_ptr<Track> FindTrack(TrackPanelCell *pCell) |
| 541 | { |
| 542 | if (pCell) |
| 543 | // FindTrack as applied through the CommonTrackPanelCell interface |
| 544 | // will really find a track, though for now it finds a left or right |
| 545 | // channel. |
| 546 | return static_cast<CommonTrackPanelCell*>(pCell)->FindTrack(); |
| 547 | return {}; |
| 548 | } |
| 549 | } |
| 550 | |
| 551 | void TrackPanel::ProcessUIHandleResult |
no test coverage detected