1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

a little more const

This commit is contained in:
Paul Licameli 2016-09-13 22:23:17 -04:00
parent 39d514b183
commit 4b16705aa5
2 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@ bool EffectAutoDuck::Init()
Track *t = iter.First();
bool lastWasSelectedWaveTrack = false;
WaveTrack *controlTrackCandidate = NULL;
const WaveTrack *controlTrackCandidate = NULL;
while(t)
{

View File

@ -74,7 +74,7 @@ private:
double mThresholdDb;
double mMaximumPause;
WaveTrack *mControlTrack;
const WaveTrack *mControlTrack;
wxTextCtrl *mDuckAmountDbBox;
wxTextCtrl *mInnerFadeDownLenBox;