X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Froute_processor_selection.cc;h=b3a6620f6bf1bca3f56fea40f7c90d7857ae642b;hb=7b3e1a1061ea12e6ba81441174e876915dbda2be;hp=1af1e0c968f393aea11b0f9ad6d2ca6617b9ced1;hpb=8687895abba4209a6de8d8a8fc1bda5996f0d875;p=ardour.git diff --git a/gtk2_ardour/route_processor_selection.cc b/gtk2_ardour/route_processor_selection.cc index 1af1e0c968..b3a6620f6b 100644 --- a/gtk2_ardour/route_processor_selection.cc +++ b/gtk2_ardour/route_processor_selection.cc @@ -26,6 +26,7 @@ #include "ardour/route.h" #include "route_processor_selection.h" +#include "gui_thread.h" #include "i18n.h" @@ -68,6 +69,7 @@ void RouteRedirectSelection::clear_routes () { routes.clear (); + drop_connections (); RoutesChanged (); } @@ -92,18 +94,28 @@ RouteRedirectSelection::add (boost::shared_ptr r) { if (find (routes.begin(), routes.end(), r) == routes.end()) { routes.push_back (r); + r->DropReferences.connect (*this, MISSING_INVALIDATOR, boost::bind (&RouteRedirectSelection::removed, this, boost::weak_ptr(r)), gui_context()); + RoutesChanged(); + } +} - // XXX SHAREDPTR FIXME - // void (RouteRedirectSelection::*pmf)(Route*) = &RouteRedirectSelection::remove; - // r->GoingAway.connect (sigc::bind (sigc::mem_fun(*this, pmf), r)); +void +RouteRedirectSelection::removed (boost::weak_ptr wr) +{ + boost::shared_ptr r (wr.lock()); - RoutesChanged(); + if (!r) { + return; } + + remove (r); } void RouteRedirectSelection::remove (boost::shared_ptr r) { + ENSURE_GUI_THREAD (*this, &RouteRedirectSelection::remove, r); + list >::iterator i; if ((i = find (routes.begin(), routes.end(), r)) != routes.end()) { routes.erase (i);