summaryrefslogtreecommitdiff
path: root/gtk2_ardour/selection.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-12-17 18:56:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-12-17 18:56:29 +0000
commitcddb08393a4178fef84f85c406ebc9b9267ad394 (patch)
tree0e1f635cbc7afd6b8886320cab21a3cb988ef413 /gtk2_ardour/selection.h
parentf6fdd8dcbf41f864e9f0cc32dabe81fe3533ddfe (diff)
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
Diffstat (limited to 'gtk2_ardour/selection.h')
-rw-r--r--gtk2_ardour/selection.h2
1 files changed, 1 insertions, 1 deletions
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<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;