1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-10 16:43:33 +02:00

Fix mac build again

This commit is contained in:
Paul Licameli
2016-03-31 17:40:44 -04:00

View File

@@ -1287,12 +1287,12 @@ namespace {
WaveTrackArray TrackList::GetWaveTrackArray(bool selectionOnly, bool includeMuted)
{
return GetWaveTracks<WaveTrackArray>(cbegin(), cend(), selectionOnly, includeMuted);
return GetWaveTracks<WaveTrackArray>(begin(), end(), selectionOnly, includeMuted);
}
WaveTrackConstArray TrackList::GetWaveTrackConstArray(bool selectionOnly, bool includeMuted) const
{
return GetWaveTracks<WaveTrackConstArray>(cbegin(), cend(), selectionOnly, includeMuted);
return GetWaveTracks<WaveTrackConstArray>(begin(), end(), selectionOnly, includeMuted);
}
#if defined(USE_MIDI)