From 6dbe3a1e3b0692bc49df74aedf96b341e1f6efbd Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 6 Jul 2016 17:13:05 -0400 Subject: [PATCH] post-rebase fixes --- libs/surfaces/control_protocol/basic_ui.cc | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/libs/surfaces/control_protocol/basic_ui.cc b/libs/surfaces/control_protocol/basic_ui.cc index 191ba98d6b..c4101b9ef1 100644 --- a/libs/surfaces/control_protocol/basic_ui.cc +++ b/libs/surfaces/control_protocol/basic_ui.cc @@ -496,41 +496,6 @@ BasicUI::sample_to_timecode (framepos_t sample, Timecode::Time& timecode, bool u session->sample_to_timecode (sample, *((Timecode::Time*)&timecode), use_offset, use_subframes); } -void -BasicUI::toggle_selection (PresentationInfo::order_t o, PresentationInfo::Flag flags) -{ - boost::shared_ptr s = session->get_remote_nth_stripable (o, flags); - - if (s) { - s->presentation_info().set_selected (!s->presentation_info().selected()); - } -} - -void -BasicUI::clear_stripable_selection () -{ - session->clear_stripable_selection (); -} - -void -BasicUI::toggle_stripable_selection (boost::shared_ptr s) -{ - session->toggle_stripable_selection (s); -} - -void -BasicUI::add_stripable_selection (boost::shared_ptr s) -{ - session->add_stripable_selection (s); -} - -void -BasicUI::set_stripable_selection (boost::shared_ptr s) -{ - session->set_stripable_selection (s); -} - - void BasicUI::cancel_all_solo () {