1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-05 23:19:06 +02:00

Remove some comments

This commit is contained in:
Paul Licameli 2019-07-31 15:25:56 -04:00
parent 302ede1043
commit 37eab87bff

View File

@ -910,7 +910,6 @@ int LabelTrack::AddLabel(const SelectedRegion &selectedRegion,
mLabels.insert(mLabels.begin() + pos, l);
// wxWidgets will own the event object
LabelTrackEvent evt{
EVT_LABELTRACK_ADDITION, SharedPointer<LabelTrack>(), title, -1, pos
};
@ -926,7 +925,6 @@ void LabelTrack::DeleteLabel(int index)
const auto title = iter->title;
mLabels.erase(iter);
// wxWidgets will own the event object
LabelTrackEvent evt{
EVT_LABELTRACK_DELETION, SharedPointer<LabelTrack>(), title, index, -1
};
@ -964,7 +962,6 @@ void LabelTrack::SortLabels()
);
// Let listeners update their stored indices
// wxWidgets will own the event object
LabelTrackEvent evt{
EVT_LABELTRACK_PERMUTED, SharedPointer<LabelTrack>(),
mLabels[j].title, i, j