1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-20 07:31:19 +01:00

Construct SnapManager with const TrackList

This commit is contained in:
Paul Licameli
2017-07-12 18:05:20 -04:00
parent 5f49892d61
commit ac10dc13d5
2 changed files with 5 additions and 5 deletions

View File

@@ -73,7 +73,7 @@ using SnapPointArray = std::vector < SnapPoint > ;
class SnapManager
{
public:
SnapManager(TrackList *tracks,
SnapManager(const TrackList *tracks,
const ZoomInfo *zoomInfo,
const TrackClipArray *clipExclusions = NULL,
const TrackArray *trackExclusions = NULL,
@@ -112,7 +112,7 @@ private:
private:
const AudacityProject *mProject;
TrackList *mTracks;
const TrackList *mTracks;
const TrackClipArray *mClipExclusions;
const TrackArray *mTrackExclusions;
const ZoomInfo *mZoomInfo;