mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 08:39:46 +02:00
Commented out some unused functions
This commit is contained in:
parent
89f28546a3
commit
4a6fd96a97
@ -558,6 +558,7 @@ bool WaveTrack::SplitCut(double t0, double t1, Track **dest)
|
||||
return SplitDelete(t0, t1);
|
||||
}
|
||||
|
||||
#if 0
|
||||
bool WaveTrack::CutAndAddCutLine(double t0, double t1, Track **dest)
|
||||
{
|
||||
if (t1 < t0)
|
||||
@ -568,6 +569,7 @@ bool WaveTrack::CutAndAddCutLine(double t0, double t1, Track **dest)
|
||||
return false;
|
||||
return ClearAndAddCutLine(t0, t1);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
|
@ -168,7 +168,7 @@ class AUDACITY_DLL_API WaveTrack final : public Track {
|
||||
|
||||
virtual bool SplitAt(double t);
|
||||
virtual bool Split( double t0, double t1 );
|
||||
virtual bool CutAndAddCutLine(double t0, double t1, Track **dest);
|
||||
// bool CutAndAddCutLine(double t0, double t1, Track **dest);
|
||||
virtual bool ClearAndAddCutLine(double t0, double t1);
|
||||
|
||||
virtual bool SplitCut (double t0, double t1, Track **dest);
|
||||
|
@ -116,7 +116,7 @@ class ODDecodeBlockFile final : public SimpleBlockFile
|
||||
|
||||
///Returns the type of audiofile this blockfile is loaded from.
|
||||
virtual unsigned int GetDecodeType(){return mType;}
|
||||
virtual void SetDecodeType(unsigned int type){mType=type;}
|
||||
// virtual void SetDecodeType(unsigned int type){mType=type;}
|
||||
|
||||
///sets the amount of samples the clip associated with this blockfile is offset in the wavetrack (non effecting)
|
||||
void SetClipOffset(sampleCount numSamples){mClipOffset= numSamples;}
|
||||
|
Loading…
x
Reference in New Issue
Block a user