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

Method SetSelected

libraries/lib-track/Track.cpp:83–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

81}
82
83void Track::SetSelected(bool s)
84{
85 auto &selected = mSelected;
86 if (selected != s) {
87 selected = s;
88 auto pList = mList.lock();
89 if (pList)
90 pList->SelectionEvent(*this);
91 }
92}
93
94void Track::CopyAttachments(Track &dst, const Track &src, bool deep)
95{

Callers 4

DoEffectMethod · 0.45
SelectTrackMethod · 0.45

Calls 2

SelectionEventMethod · 0.80
lockMethod · 0.45

Tested by

no test coverage detected