post-rebase fixes
authorPaul Davis <paul@linuxaudiosystems.com>
Wed, 6 Jul 2016 21:13:05 +0000 (17:13 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 27 Sep 2016 19:59:30 +0000 (14:59 -0500)
libs/surfaces/control_protocol/basic_ui.cc

index 191ba98d6b72258b854e61c6abe664ae86a22de4..c4101b9ef1a3f776a48bac4ca648158c7d38b462 100644 (file)
@@ -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<Stripable> 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<Stripable> s)
-{
-       session->toggle_stripable_selection (s);
-}
-
-void
-BasicUI::add_stripable_selection (boost::shared_ptr<Stripable> s)
-{
-       session->add_stripable_selection (s);
-}
-
-void
-BasicUI::set_stripable_selection (boost::shared_ptr<Stripable> s)
-{
-       session->set_stripable_selection (s);
-}
-
-
 void
 BasicUI::cancel_all_solo ()
 {