1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

Move responsibilities from Track to TrackView classes...

... And Track no longer inherits TrackPanelCell, so be careful to rewrite
some dynamic_casts too to check instead for TrackView.  Those casts won't fail
to recompile if not rewritten.
This commit is contained in:
Paul Licameli
2019-06-18 00:00:35 -04:00
parent e0b8bd78eb
commit e581fa60d9
26 changed files with 190 additions and 186 deletions

View File

@@ -387,11 +387,6 @@ void Track::SyncLockAdjust(double oldT1, double newT1)
}
}
std::shared_ptr<Track> Track::DoFindTrack()
{
return SharedPointer();
}
void PlayableTrack::Init( const PlayableTrack &orig )
{
mMute = orig.mMute;