1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-08 20:52:09 +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

@@ -520,7 +520,7 @@ bool NoteTrack::Clear(double t0, double t1)
return true;
}
bool NoteTrack::Paste(double t, Track *src)
bool NoteTrack::Paste(double t, const Track *src)
{
// Paste inserts src at time t. If src has a positive offset,
// the offset is treated as silence which is also inserted. If