1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-22 08:31:14 +01:00

More const qualifications. The source of a paste is const.

This commit is contained in:
Paul Licameli
2016-02-27 12:54:57 -05:00
parent 70c1d57591
commit d097c7fad4
7 changed files with 9 additions and 9 deletions

View File

@@ -1181,7 +1181,7 @@ bool WaveTrack::SyncLockAdjust(double oldT1, double newT1)
return true;
}
bool WaveTrack::Paste(double t0, Track *src)
bool WaveTrack::Paste(double t0, const Track *src)
{
bool editClipCanMove = true;
gPrefs->Read(wxT("/GUI/EditClipCanMove"), &editClipCanMove);