mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 08:30:06 +02:00
Fixes some minor issues reported by valgrind.
This commit is contained in:
parent
c79bf9b1fa
commit
d50f893864
@ -98,6 +98,7 @@ WaveTrack::WaveTrack(DirManager *projDirManager, sampleFormat format, double rat
|
||||
mDisplayNumLocations = 0;
|
||||
mDisplayLocations = NULL;
|
||||
mDisplayNumLocationsAllocated = 0;
|
||||
mLastDisplay = -1;
|
||||
}
|
||||
|
||||
WaveTrack::WaveTrack(WaveTrack &orig):
|
||||
|
@ -58,6 +58,8 @@ END_EVENT_TABLE()
|
||||
MixerToolBar::MixerToolBar()
|
||||
: ToolBar(MixerBarID, _("Mixer"), wxT("Mixer"))
|
||||
{
|
||||
mInputSliderVolume = 0.0;
|
||||
mOutputSliderVolume = 0.0;
|
||||
}
|
||||
|
||||
MixerToolBar::~MixerToolBar()
|
||||
|
@ -395,9 +395,9 @@ TimeConverter::TimeConverter(const wxString & formatName,
|
||||
|
||||
mFocusedDigit = 0;
|
||||
|
||||
SetFormatName(formatName);
|
||||
SetTimeValue(timeValue);
|
||||
SetSampleRate(sampleRate);
|
||||
SetTimeValue(timeValue);
|
||||
SetFormatName(formatName);
|
||||
}
|
||||
|
||||
void TimeConverter::ParseFormatString( const wxString & format)
|
||||
|
Loading…
x
Reference in New Issue
Block a user