summaryrefslogtreecommitdiff
path: root/gtk2_ardour/region_selection.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/region_selection.cc')
-rw-r--r--gtk2_ardour/region_selection.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/region_selection.cc b/gtk2_ardour/region_selection.cc
index 060c29792b..34810691f5 100644
--- a/gtk2_ardour/region_selection.cc
+++ b/gtk2_ardour/region_selection.cc
@@ -78,12 +78,12 @@ bool RegionSelection::contains (RegionView* rv) const
return find (begin(), end(), rv) != end();
}
-void
+bool
RegionSelection::add (RegionView* rv)
{
if (contains (rv)) {
/* we already have it */
- return;
+ return false;
}
rv->RegionViewGoingAway.connect (mem_fun(*this, &RegionSelection::remove_it));
@@ -101,6 +101,8 @@ RegionSelection::add (RegionView* rv)
// add to layer sorted list
add_to_layer (rv);
+
+ return true;
}
void