From a46f2cefb4e96e0a4a36c88aa123daf3baa0b92c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 14 Apr 2025 10:45:46 -0600 Subject: [PATCH] PBD::Signal - move connection list back into private scope (amend 86c837b0e) --- libs/pbd/pbd/signals.h | 1 - 1 file changed, 1 deletion(-) diff --git a/libs/pbd/pbd/signals.h b/libs/pbd/pbd/signals.h index 4bcd19e1f9..cf7d3bfe78 100644 --- a/libs/pbd/pbd/signals.h +++ b/libs/pbd/pbd/signals.h @@ -303,7 +303,6 @@ class LIBPBD_API ScopedConnectionList mutable Glib::Threads::Mutex _scoped_connection_lock; typedef std::list ConnectionList; - public: ConnectionList _scoped_connection_list; };