1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-14 08:36:27 +01:00

Replace assert calls with wxASSERT

This commit is contained in:
Pokechu22
2017-02-21 18:05:35 -08:00
committed by Paul Licameli
parent 0ce9598274
commit 2d912f3c93
4 changed files with 10 additions and 10 deletions

View File

@@ -1175,7 +1175,7 @@ void MixerBoard::RemoveTrackCluster(const WaveTrack* pTrack)
// Sanity check: if there is still a MixerTrackCluster with pTrack, then
// we deleted the first but should have deleted the last:
FindMixerTrackCluster(pTrack, &pMixerTrackCluster);
assert(pMixerTrackCluster == NULL);
wxASSERT(pMixerTrackCluster == NULL);
#endif
}