1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-20 06:10:06 +02:00

Another const argument, another "override"

This commit is contained in:
Paul Licameli 2016-03-02 12:47:52 -05:00
parent 2f6af8bfd5
commit 2157b92b7b
2 changed files with 3 additions and 3 deletions

View File

@ -807,7 +807,7 @@ void WaveTrack::SetWaveformSettings(WaveformSettings *pSettings)
//
bool WaveTrack::ClearAndPaste(double t0, // Start 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 merge, // Whether to remove 'extra' splits
TimeWarper *effectWarper // How does time change

View File

@ -75,7 +75,7 @@ class AUDACITY_DLL_API WaveTrack final : public Track {
WaveTrack(const WaveTrack &orig);
void Init(const WaveTrack &orig);
virtual Track *Duplicate() const;
virtual Track *Duplicate() const override;
#ifdef EXPERIMENTAL_OUTPUT_DISPLAY
void VirtualStereoInit();
#endif
@ -159,7 +159,7 @@ class AUDACITY_DLL_API WaveTrack final : public Track {
bool Clear(double t0, double t1) override;
bool Paste(double t0, const Track *src) override;
bool ClearAndPaste(double t0, double t1,
Track *src,
const Track *src,
bool preserve = true,
bool merge = true,
TimeWarper *effectWarper = NULL) /* not override */;