mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-07 20:22:13 +01:00
More pure virtuals in Track, supply Note and Time overrides
This commit is contained in:
@@ -534,6 +534,18 @@ bool NoteTrack::Paste(double t, const Track *src)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool NoteTrack::Silence(double, double)
|
||||
{
|
||||
// to do
|
||||
return false;
|
||||
}
|
||||
|
||||
bool NoteTrack::InsertSilence(double, double)
|
||||
{
|
||||
// to do
|
||||
return false;
|
||||
}
|
||||
|
||||
// Call this function to manipulate the underlying sequence data. This is
|
||||
// NOT the function that handles horizontal dragging.
|
||||
bool NoteTrack::Shift(double t) // t is always seconds
|
||||
|
||||
Reference in New Issue
Block a user