summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_processor_selection.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/route_processor_selection.h')
-rw-r--r--gtk2_ardour/route_processor_selection.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/gtk2_ardour/route_processor_selection.h b/gtk2_ardour/route_processor_selection.h
index df43019e91..08616f0d50 100644
--- a/gtk2_ardour/route_processor_selection.h
+++ b/gtk2_ardour/route_processor_selection.h
@@ -24,13 +24,13 @@
#include "pbd/signals.h"
#include "processor_selection.h"
-#include "route_selection.h"
+#include "route_ui_selection.h"
class RouteRedirectSelection : public PBD::ScopedConnectionList, public sigc::trackable
{
public:
ProcessorSelection processors;
- RouteSelection routes;
+ RouteUISelection routes;
RouteRedirectSelection() {}
@@ -45,17 +45,17 @@ class RouteRedirectSelection : public PBD::ScopedConnectionList, public sigc::tr
void set (XMLNode* node);
void add (XMLNode* node);
- void set (boost::shared_ptr<ARDOUR::Route>);
- void add (boost::shared_ptr<ARDOUR::Route>);
- void remove (boost::shared_ptr<ARDOUR::Route>);
+ void set (RouteUI*);
+ void add (RouteUI*);
+ void remove (RouteUI*);
void clear_processors ();
void clear_routes ();
- bool selected (boost::shared_ptr<ARDOUR::Route>);
+ bool selected (RouteUI*);
private:
- void removed (boost::weak_ptr<ARDOUR::Route>);
+ void removed (RouteUI*);
};