From 1f6800d421fc41e6797e0bc3b6e78a6e07e97120 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 7 Mar 2016 14:59:40 -0500 Subject: redesign Route and VCA objects to inherit from ARDOUR::Stripable --- libs/ardour/route.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs/ardour/route.cc') diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 581031c405..db92edf786 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -83,7 +83,7 @@ PBD::Signal3, boost::shared_ptr, Rout /** Base class for all routable/mixable objects (tracks and busses) */ Route::Route (Session& sess, string name, Flag flg, DataType default_type) - : SessionObject (sess, name) + : Stripable (sess, name) , Automatable (sess) , GraphNode (sess._process_graph) , _active (true) @@ -4732,13 +4732,13 @@ Route::gain_control() const return _gain_control; } -boost::shared_ptr +boost::shared_ptr Route::trim_control() const { return _trim_control; } -boost::shared_ptr +boost::shared_ptr Route::phase_control() const { if (phase_invert().size()) { -- cgit v1.2.3