summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_processor_selection.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-07-06 13:37:30 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-07-06 13:39:10 -0400
commitda7d7f950233f109f82f7e7ea5c62f81ef3d7bbb (patch)
tree14fdd5b6d40af1b3807067058aef2b22460dba30 /gtk2_ardour/route_processor_selection.h
parent2047ee527c688ed2c2bedea79a7e01088da58d72 (diff)
many changes associated with rationalizing selection flow
Diffstat (limited to 'gtk2_ardour/route_processor_selection.h')
-rw-r--r--gtk2_ardour/route_processor_selection.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/route_processor_selection.h b/gtk2_ardour/route_processor_selection.h
index 3f8bb1a08c..6c037d7bd9 100644
--- a/gtk2_ardour/route_processor_selection.h
+++ b/gtk2_ardour/route_processor_selection.h
@@ -30,7 +30,7 @@ class RouteProcessorSelection : public PBD::ScopedConnectionList, public sigc::t
{
public:
ProcessorSelection processors;
- RouteUISelection routes;
+ AxisViewSelection axes;
RouteProcessorSelection();
@@ -47,17 +47,17 @@ 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*);
+ void removed (AxisView*);
bool _no_route_change_signal;
};