| 156 | } |
| 157 | |
| 158 | Track::Holder LabelTrack::PasteInto(AudacityProject &, TrackList &list) const |
| 159 | { |
| 160 | auto pNewTrack = std::make_shared<LabelTrack>(); |
| 161 | pNewTrack->Init(*this); |
| 162 | pNewTrack->Paste(0.0, *this); |
| 163 | list.Add(pNewTrack); |
| 164 | return pNewTrack; |
| 165 | } |
| 166 | |
| 167 | size_t LabelTrack::NIntervals() const |
| 168 | { |