1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-23 23:03:55 +02:00

Other methods of WaveTrack return void, will throw on failure instead

This commit is contained in:
Paul Licameli
2017-03-22 13:25:55 -04:00
parent e1473dfe76
commit 0d7250578d
12 changed files with 98 additions and 165 deletions

View File

@@ -539,7 +539,7 @@ bool EffectChangeSpeed::ProcessOne(WaveTrack * track,
if (bResult)
{
LinearTimeWarper warper { mCurT0, mCurT0, mCurT1, mCurT0 + newLength };
bResult = track->ClearAndPaste(
track->ClearAndPaste(
mCurT0, mCurT1, outputTrack.get(), true, false, &warper);
}