remove unused function

This commit is contained in:
Robin Gareus
2015-10-04 15:35:00 +02:00
parent c68736bc02
commit 95df99e6d4
2 changed files with 0 additions and 20 deletions

View File

@@ -1246,7 +1246,6 @@ class Editor : public PublicEditor, public PBD::ScopedConnectionList, public ARD
void region_fill_track ();
void audition_playlist_region_standalone (boost::shared_ptr<ARDOUR::Region>);
void audition_playlist_region_via_route (boost::shared_ptr<ARDOUR::Region>, ARDOUR::Route&);
void split_multichannel_region();
void reverse_region ();
void strip_region_silence ();

View File

@@ -2767,25 +2767,6 @@ Editor::rename_region ()
}
}
void
Editor::audition_playlist_region_via_route (boost::shared_ptr<Region> region, Route& route)
{
if (_session->is_auditioning()) {
_session->cancel_audition ();
}
// note: some potential for creativity here, because region doesn't
// have to belong to the playlist that Route is handling
// bool was_soloed = route.soloed();
route.set_solo (true, this);
_session->request_bounded_roll (region->position(), region->position() + region->length());
/* XXX how to unset the solo state ? */
}
/** Start an audition of the first selected region */
void
Editor::play_edit_range ()