mirror of
https://github.com/cookiengineer/audacity
synced 2026-01-09 14:17:10 +01:00
Start to handle results from subordinates.
This commit is contained in:
@@ -993,10 +993,10 @@ bool WaveClip::GetRMS(float *rms, double t0,
|
||||
|
||||
void WaveClip::ConvertToSampleFormat(sampleFormat format)
|
||||
{
|
||||
bool result;
|
||||
result = mSequence->ConvertToSampleFormat(format);
|
||||
MarkChanged();
|
||||
wxASSERT(result);
|
||||
bool bResult = mSequence->ConvertToSampleFormat(format);
|
||||
if (bResult)
|
||||
MarkChanged();
|
||||
wxASSERT(bResult);
|
||||
}
|
||||
|
||||
void WaveClip::UpdateEnvelopeTrackLen()
|
||||
|
||||
Reference in New Issue
Block a user