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:
parent
d4a560f6f3
commit
d7695f3c91
@ -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
|
||||
}
|
||||
|
@ -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)
|
||||
|
||||
|
@ -34,7 +34,6 @@ class AudioIOBufferHelper
|
||||
}
|
||||
|
||||
~AudioIOBufferHelper() {
|
||||
|
||||
delete[] tempBufs[0];
|
||||
delete[] tempBufs;
|
||||
delete[] chans;
|
||||
|
Loading…
x
Reference in New Issue
Block a user