1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-05 14:18:53 +02:00

Remove unused members of Envelope

This commit is contained in:
Paul Licameli 2017-05-03 07:19:46 -04:00
parent f0bdfc10b5
commit 3ba1ebc5c0

View File

@ -202,10 +202,6 @@ private:
void BinarySearchForTime( int &Lo, int &Hi, double t ) const;
double GetInterpolationStartValueAtPoint( int iPoint ) const;
// Possibly inline functions:
// This function resets them integral memoizers (call whenever the Envelope changes)
void resetIntegralMemoizer() { lastIntegral_t0=0; lastIntegral_t1=0; lastIntegral_result=0; }
// The list of envelope control points.
EnvArray mEnv;
@ -224,11 +220,6 @@ private:
bool mDB;
double mMinValue, mMaxValue;
// These are memoizing variables for Integral()
double lastIntegral_t0;
double lastIntegral_t1;
double lastIntegral_result;
// UI stuff
bool mDragPointValid;
int mDragPoint;