1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-08 04:32:00 +01:00

Effect::mOutputTracks is managed by smart pointer

This commit is contained in:
Paul Licameli
2016-08-13 09:26:53 -04:00
parent dcceaca13c
commit e599cfa6fa
22 changed files with 43 additions and 54 deletions

View File

@@ -104,7 +104,7 @@ bool EffectRepeat::Process()
bool bGoodResult = true;
double maxDestLen = 0.0; // used to change selection to generated bit
TrackListIterator iter(mOutputTracks);
TrackListIterator iter(mOutputTracks.get());
for (Track *t = iter.First(); t && bGoodResult; t = iter.Next())
{