Use Stripable::Sorter in meterbridge

This commit is contained in:
Robin Gareus 2017-07-01 21:25:01 +02:00
parent 583a7a41e8
commit 0f3ee7c049

View file

@ -108,7 +108,7 @@ private:
/* everything comes before b */ /* everything comes before b */
return true; return true;
} }
return a->presentation_info().order() < b->presentation_info().order(); return ARDOUR::Stripable::Sorter (true) (a, b);
} }
}; };