move virtual method from region_view.h to region_view.cc

It cannot be inlined anyway, so nothing gained by the header file presence
This commit is contained in:
Paul Davis 2020-05-01 17:38:14 -06:00
parent 575c818482
commit 13c0145890
2 changed files with 8 additions and 4 deletions

View File

@ -979,3 +979,10 @@ RegionView::update_visibility ()
manage_name_text ();
}
void
RegionView::set_selected (bool yn)
{
_region->set_selected_for_solo(yn);
TimeAxisViewItem::set_selected(yn);
}

View File

@ -66,10 +66,7 @@ public:
~RegionView ();
virtual void set_selected (bool yn) {
_region->set_selected_for_solo(yn);
TimeAxisViewItem::set_selected(yn);
}
void set_selected (bool yn);
virtual void init (bool wait_for_data);