mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 16:40:07 +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;
|
mDisplayNumLocations = 0;
|
||||||
mDisplayLocations = NULL;
|
mDisplayLocations = NULL;
|
||||||
mDisplayNumLocationsAllocated = 0;
|
mDisplayNumLocationsAllocated = 0;
|
||||||
|
mLastDisplay = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
WaveTrack::WaveTrack(WaveTrack &orig):
|
WaveTrack::WaveTrack(WaveTrack &orig):
|
||||||
|
@ -58,6 +58,8 @@ END_EVENT_TABLE()
|
|||||||
MixerToolBar::MixerToolBar()
|
MixerToolBar::MixerToolBar()
|
||||||
: ToolBar(MixerBarID, _("Mixer"), wxT("Mixer"))
|
: ToolBar(MixerBarID, _("Mixer"), wxT("Mixer"))
|
||||||
{
|
{
|
||||||
|
mInputSliderVolume = 0.0;
|
||||||
|
mOutputSliderVolume = 0.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
MixerToolBar::~MixerToolBar()
|
MixerToolBar::~MixerToolBar()
|
||||||
|
@ -395,9 +395,9 @@ TimeConverter::TimeConverter(const wxString & formatName,
|
|||||||
|
|
||||||
mFocusedDigit = 0;
|
mFocusedDigit = 0;
|
||||||
|
|
||||||
SetFormatName(formatName);
|
|
||||||
SetTimeValue(timeValue);
|
|
||||||
SetSampleRate(sampleRate);
|
SetSampleRate(sampleRate);
|
||||||
|
SetTimeValue(timeValue);
|
||||||
|
SetFormatName(formatName);
|
||||||
}
|
}
|
||||||
|
|
||||||
void TimeConverter::ParseFormatString( const wxString & format)
|
void TimeConverter::ParseFormatString( const wxString & format)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user