From 16fca5e6e41f3fdc3fa7426f401de81d0d56b378 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 17 Sep 2014 09:39:05 -0400 Subject: [PATCH] remove old connections to (now) static Location signals --- gtk2_ardour/editor_markers.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index 6a57477a0c..be4c909d2f 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -163,9 +163,6 @@ Editor::add_new_location_internal (Location* location) lam->show (); } - location->start_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context()); - location->end_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context()); - location->changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context()); location->name_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context()); location->FlagsChanged.connect (*this, invalidator (*this), boost::bind (&Editor::location_flags_changed, this, _1, _2), gui_context());