1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-26 09:28:07 +02:00

Remove whitespace only changes

Signed-off-by: Emily Mabrey <emabrey@tenacityaudio.org>
This commit is contained in:
Emily Mabrey 2021-08-10 18:49:56 -04:00
parent d4a560f6f3
commit d7695f3c91
No known key found for this signature in database
GPG Key ID: 6F4EF47256A1B7DC
3 changed files with 92 additions and 91 deletions

View File

@ -986,7 +986,6 @@ AudioIO::AudioIO()
#ifdef EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT
mAILAActive = false;
#endif
mStreamToken = 0;
mLastPaError = paNoError;
@ -1015,7 +1014,7 @@ AudioIO::AudioIO()
AudacityMessageBox(
errStr,
XO("Error Initializing Audio"),
wxICON_ERROR | wxOK);
wxICON_ERROR|wxOK);
// Since PortAudio is not initialized, all calls to PortAudio
// functions will fail. This will give reasonable behavior, since
@ -1038,7 +1037,7 @@ AudioIO::AudioIO()
AudacityMessageBox(
errStr,
XO("Error Initializing Midi"),
wxICON_ERROR | wxOK);
wxICON_ERROR|wxOK);
// Same logic for PortMidi as described above for PortAudio
}

View File

@ -11,6 +11,9 @@ Paul Licameli split from AudioIO.h
#ifndef __AUDACITY_AUDIO_IO_BASE__
#define __AUDACITY_AUDIO_IO_BASE__
#include <cfloat>
#include <functional>
#include <vector>
@ -35,7 +38,7 @@ class BoundedEnvelope;
// Windows build needs complete type for parameter of wxWeakRef
// class MeterPanelBase;
#include "widgets/MeterPanelBase.h"
using PRCrossfadeData = std::vector< std::vector<float>>;
using PRCrossfadeData = std::vector< std::vector < float > >;
#define BAD_STREAM_TIME (-DBL_MAX)

View File

@ -34,7 +34,6 @@ class AudioIOBufferHelper
}
~AudioIOBufferHelper() {
delete[] tempBufs[0];
delete[] tempBufs;
delete[] chans;