summaryrefslogtreecommitdiff
path: root/libs/ardour/route_graph.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-06-03 15:14:23 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-06-03 15:15:39 -0400
commite8379b3818b8a297d4ed911d1e7a42bc2b55a587 (patch)
treeba11533fe7c621e119d09ed040ae6d0a81d18b40 /libs/ardour/route_graph.cc
parent0b5364426d006853c29aeec89c02ac796c5cb008 (diff)
simplify PresentationInfo concept of order so that it is always global
Cases that need more complex sort orders (e.g. all routes, then all vcas then master) need to take of this themselves
Diffstat (limited to 'libs/ardour/route_graph.cc')
-rw-r--r--libs/ardour/route_graph.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/route_graph.cc b/libs/ardour/route_graph.cc
index 7939b29c7c..111033bf23 100644
--- a/libs/ardour/route_graph.cc
+++ b/libs/ardour/route_graph.cc
@@ -198,8 +198,8 @@ struct RouteRecEnabledComparator
{
boost::shared_ptr<Track> t1 (boost::dynamic_pointer_cast<Track>(r1));
boost::shared_ptr<Track> t2 (boost::dynamic_pointer_cast<Track>(r2));
- PresentationInfo::global_order_t r1o = r1->presentation_info().global_order();
- PresentationInfo::global_order_t r2o = r2->presentation_info().global_order();
+ PresentationInfo::order_t r1o = r1->presentation_info().order();
+ PresentationInfo::order_t r2o = r2->presentation_info().order();
if (!t1) {
if (!t2) {