summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_channel_selector.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-16 23:45:16 +0200
committerRobin Gareus <robin@gareus.org>2017-06-17 04:36:39 +0200
commit1d28665f86de13de27cfdde2e16e015a73bbb698 (patch)
tree51fb83ba292f828644fa9332ed000c88d7c13761 /gtk2_ardour/export_channel_selector.cc
parent140c511d2c123aafdb5f74ce0be070e2b464f7dc (diff)
Use Stripable::Sorter in GUI consistently.
Diffstat (limited to 'gtk2_ardour/export_channel_selector.cc')
-rw-r--r--gtk2_ardour/export_channel_selector.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc
index acbed62030..347882501c 100644
--- a/gtk2_ardour/export_channel_selector.cc
+++ b/gtk2_ardour/export_channel_selector.cc
@@ -121,7 +121,7 @@ PortExportChannelSelector::fill_route_list ()
channel_view.add_route (master);
}
- routes.sort (Stripable::PresentationOrderSorter ());
+ routes.sort (Stripable::Sorter ());
for (RouteList::iterator it = routes.begin(); it != routes.end(); ++it) {
if ((*it)->is_master () || (*it)->is_monitor ()) {