update some calls to use new get_preferred_edit_position; needs testing
[ardour.git] / gtk2_ardour / route_processor_selection.cc
index 1810ba674b40498ef838b595da8a66eac06b7893..8975bf90bcd13fdb953570d0051ca61f83dbd94c 100644 (file)
 #include <sigc++/bind.h>
 #include "pbd/error.h"
 
-#include "ardour/playlist.h"
-#include "ardour/processor.h"
-#include "ardour/route.h"
-
 #include "gui_thread.h"
 #include "mixer_strip.h"
 #include "route_processor_selection.h"
@@ -128,8 +124,8 @@ RouteProcessorSelection::remove (RouteUI* r)
 
        RouteUISelection::iterator i;
        if ((i = find (routes.begin(), routes.end(), r)) != routes.end()) {
-               routes.erase (i);
                (*i)->set_selected (false);
+               routes.erase (i);
                if (!_no_route_change_signal) {
                        RoutesChanged ();
                }