X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=gtk2_ardour%2Fmidi_selection.cc;h=bf9b88899bd2e894df0bfb65095824cdc6058011;hb=6ee23029a338951705c589be6c61ab52099758b6;hp=93f62f11a395cf417c8ea08e56ef65c6c496e5d2;hpb=af768486c9b354a1703b09810e21328e513ce51d;p=ardour.git diff --git a/gtk2_ardour/midi_selection.cc b/gtk2_ardour/midi_selection.cc index 93f62f11a3..bf9b88899b 100644 --- a/gtk2_ardour/midi_selection.cc +++ b/gtk2_ardour/midi_selection.cc @@ -24,7 +24,7 @@ MidiRegionSelection::MidiRegionSelection () { - RegionView::RegionViewGoingAway.connect (_death_connection, MISSING_INVALIDATOR, ui_bind (&MidiRegionSelection::remove_it, this, _1), gui_context()); + RegionView::RegionViewGoingAway.connect (_death_connection, MISSING_INVALIDATOR, boost::bind (&MidiRegionSelection::remove_it, this, _1), gui_context()); } /** Copy constructor. @@ -33,7 +33,7 @@ MidiRegionSelection::MidiRegionSelection () MidiRegionSelection::MidiRegionSelection (MidiRegionSelection const & other) : std::list (other) { - RegionView::RegionViewGoingAway.connect (_death_connection, MISSING_INVALIDATOR, ui_bind (&MidiRegionSelection::remove_it, this, _1), gui_context()); + RegionView::RegionViewGoingAway.connect (_death_connection, MISSING_INVALIDATOR, boost::bind (&MidiRegionSelection::remove_it, this, _1), gui_context()); }