make private (non-usable) copy constructor for Selection compile, to follow changes to TrackSelection constructors

git-svn-id: svn://localhost/ardour2/branches/3.0@6373 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2009-12-17 18:56:29 +00:00
parent f6fdd8dcbf
commit cddb08393a
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class Selection : public sigc::trackable, public PBD::ScopedConnectionList
template<class A> void foreach_region (void (ARDOUR::Region::*method)(A), A arg);
private:
Selection (const Selection& other) {}
Selection (const Selection& other) : tracks (other.tracks) {}
PublicEditor const * editor;
uint32_t next_time_id;