From cddb08393a4178fef84f85c406ebc9b9267ad394 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 17 Dec 2009 18:56:29 +0000 Subject: [PATCH] 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 --- gtk2_ardour/selection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/selection.h b/gtk2_ardour/selection.h index 739d3b4c01..ad257e0848 100644 --- a/gtk2_ardour/selection.h +++ b/gtk2_ardour/selection.h @@ -187,7 +187,7 @@ class Selection : public sigc::trackable, public PBD::ScopedConnectionList template 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;