mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Remove cruft
This commit is contained in:
parent
4d3cd732c9
commit
7cdf25e02f
1 changed files with 0 additions and 17 deletions
|
|
@ -983,23 +983,6 @@ Editor::set_selected_regionview_from_map_event (GdkEventAny* /*ev*/, StreamView*
|
|||
return true;
|
||||
}
|
||||
|
||||
struct SelectionOrderSorter {
|
||||
bool operator() (TimeAxisView const * const a, TimeAxisView const * const b) const {
|
||||
boost::shared_ptr<Stripable> sa = a->stripable ();
|
||||
boost::shared_ptr<Stripable> sb = b->stripable ();
|
||||
if (!sa && !sb) {
|
||||
return a < b;
|
||||
}
|
||||
if (!sa) {
|
||||
return false;
|
||||
}
|
||||
if (!sb) {
|
||||
return true;
|
||||
}
|
||||
return sa->presentation_info().selection_cnt() < sb->presentation_info().selection_cnt();
|
||||
}
|
||||
};
|
||||
|
||||
void
|
||||
Editor::presentation_info_changed (PropertyChange const & what_changed)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue