Use Stripable::Sorter in meterbridge

This commit is contained in:
Robin Gareus 2017-07-01 21:25:01 +02:00
parent 583a7a41e8
commit 0f3ee7c049
1 changed files with 1 additions and 1 deletions

View File

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