summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-05-31 23:35:00 +0200
committerRobin Gareus <robin@gareus.org>2016-05-31 23:51:22 +0200
commita03217c27f73245281e0939d436f663091633997 (patch)
tree4e1c45d993fc6474efda77217d208acd09c154e8 /libs/ardour/route.cc
parentf87cd4435dbe20470b46ad9a7510da97435c0c73 (diff)
update lua bindings for API changes
luaBridge implicit inheritance uses a single direct parent (other parents object need casts). This motivates Route -> Stripable -> SessionObject
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index 5335d69502..5f98fba1fe 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -84,8 +84,8 @@ PBD::Signal3<int,boost::shared_ptr<Route>, boost::shared_ptr<PluginInsert>, Rout
/** Base class for all routable/mixable objects (tracks and busses) */
Route::Route (Session& sess, string name, PresentationInfo::Flag flag, DataType default_type)
- : GraphNode (sess._process_graph)
- , Stripable (sess, name, PresentationInfo (flag))
+ : Stripable (sess, name, PresentationInfo (flag))
+ , GraphNode (sess._process_graph)
, Muteable (sess, name)
, Automatable (sess)
, _active (true)