mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-20 22:30:05 +02:00
Another const argument, another "override"
This commit is contained in:
parent
2f6af8bfd5
commit
2157b92b7b
@ -807,7 +807,7 @@ void WaveTrack::SetWaveformSettings(WaveformSettings *pSettings)
|
|||||||
//
|
//
|
||||||
bool WaveTrack::ClearAndPaste(double t0, // Start of time to clear
|
bool WaveTrack::ClearAndPaste(double t0, // Start of time to clear
|
||||||
double t1, // End of time to clear
|
double t1, // End of time to clear
|
||||||
Track *src, // What to paste
|
const Track *src, // What to paste
|
||||||
bool preserve, // Whether to reinsert splits/cuts
|
bool preserve, // Whether to reinsert splits/cuts
|
||||||
bool merge, // Whether to remove 'extra' splits
|
bool merge, // Whether to remove 'extra' splits
|
||||||
TimeWarper *effectWarper // How does time change
|
TimeWarper *effectWarper // How does time change
|
||||||
|
@ -75,7 +75,7 @@ class AUDACITY_DLL_API WaveTrack final : public Track {
|
|||||||
WaveTrack(const WaveTrack &orig);
|
WaveTrack(const WaveTrack &orig);
|
||||||
|
|
||||||
void Init(const WaveTrack &orig);
|
void Init(const WaveTrack &orig);
|
||||||
virtual Track *Duplicate() const;
|
virtual Track *Duplicate() const override;
|
||||||
#ifdef EXPERIMENTAL_OUTPUT_DISPLAY
|
#ifdef EXPERIMENTAL_OUTPUT_DISPLAY
|
||||||
void VirtualStereoInit();
|
void VirtualStereoInit();
|
||||||
#endif
|
#endif
|
||||||
@ -159,7 +159,7 @@ class AUDACITY_DLL_API WaveTrack final : public Track {
|
|||||||
bool Clear(double t0, double t1) override;
|
bool Clear(double t0, double t1) override;
|
||||||
bool Paste(double t0, const Track *src) override;
|
bool Paste(double t0, const Track *src) override;
|
||||||
bool ClearAndPaste(double t0, double t1,
|
bool ClearAndPaste(double t0, double t1,
|
||||||
Track *src,
|
const Track *src,
|
||||||
bool preserve = true,
|
bool preserve = true,
|
||||||
bool merge = true,
|
bool merge = true,
|
||||||
TimeWarper *effectWarper = NULL) /* not override */;
|
TimeWarper *effectWarper = NULL) /* not override */;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user