From 074516cdb412d060a90f4f22e47198cbb57c4e1d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 21 Apr 2023 11:45:22 -0600 Subject: [PATCH] libpbd: provide access from a ScopedConnection to the underlying UnscopedConnection --- libs/pbd/pbd/signals.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/pbd/pbd/signals.h b/libs/pbd/pbd/signals.h index ee6c6cadda..ea1a779879 100644 --- a/libs/pbd/pbd/signals.h +++ b/libs/pbd/pbd/signals.h @@ -187,6 +187,8 @@ public: return *this; } + UnscopedConnection const & the_connection() const { return _c; } + private: UnscopedConnection _c; };