From 2d4358ddb5e9cf3cd21b603b74dc999aaebf53a2 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 10 Jun 2016 13:50:19 -0400 Subject: Various changes to PresentationInfo and a small consolidation of sorters. The semantics for sorting PresentationInfo are up to the caller, not the PresentationInfo object, so operator<() was removed and callers specifically invoke ::order() for sorting. --- libs/ardour/presentation_info.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'libs/ardour/presentation_info.cc') diff --git a/libs/ardour/presentation_info.cc b/libs/ardour/presentation_info.cc index cfed463d83..4fdbd4111a 100644 --- a/libs/ardour/presentation_info.cc +++ b/libs/ardour/presentation_info.cc @@ -52,6 +52,7 @@ const PresentationInfo::Flag PresentationInfo::Bus = PresentationInfo::Flag (Pre const PresentationInfo::Flag PresentationInfo::Track = PresentationInfo::Flag (PresentationInfo::AudioTrack|PresentationInfo::MidiTrack); const PresentationInfo::Flag PresentationInfo::Route = PresentationInfo::Flag (PresentationInfo::Bus|PresentationInfo::Track); const PresentationInfo::Flag PresentationInfo::AllRoutes = PresentationInfo::Flag (PresentationInfo::Route|PresentationInfo::MasterOut|PresentationInfo::MonitorOut); +const PresentationInfo::Flag PresentationInfo::AllStripables = PresentationInfo::Flag (PresentationInfo::AllRoutes|PresentationInfo::VCA); void PresentationInfo::make_property_quarks () -- cgit v1.2.3