Make menu item for Add Track/Bus/VCA dialog consistent with window title
[ardour.git] / gtk2_ardour / route_processor_selection.h
index 3f8bb1a08cb445ff101a08bed62a21da70e27366..a4d6f0f1a49ba8cc184927316746a3c73f520ebd 100644 (file)
@@ -30,7 +30,7 @@ class RouteProcessorSelection : public PBD::ScopedConnectionList, public sigc::t
 {
   public:
        ProcessorSelection processors;
-       RouteUISelection     routes;
+       AxisViewSelection  axes;
 
        RouteProcessorSelection();
 
@@ -47,18 +47,18 @@ class RouteProcessorSelection : public PBD::ScopedConnectionList, public sigc::t
        void set (XMLNode* node);
        void add (XMLNode* node);
 
-       void set (RouteUI*);
-       void add (RouteUI*);
-       void remove (RouteUI*);
+       void set (AxisView*);
+       void add (AxisView*);
+       void remove (AxisView*);
 
        void clear_processors ();
        void clear_routes ();
 
-       bool selected (RouteUI*);
+       bool selected (AxisView*);
 
   private:
-       void removed (RouteUI*);
-       bool _no_route_change_signal;
+       void removed (AxisView*);
+       static unsigned int _no_route_change_signal;
 
 };