MCPcopy Create free account
hub / github.com/audacity/audacity / FindTrack

Function FindTrack

src/TrackPanel.cpp:540–548  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

538
539namespace {
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
551void TrackPanel::ProcessUIHandleResult

Callers 3

ProcessUIHandleResultMethod · 0.70
OnMouseEventMethod · 0.70
GetFocusMethod · 0.50

Calls 1

FindTrackMethod · 0.45

Tested by

no test coverage detected