From: Paul Davis Date: Wed, 8 Jun 2016 15:01:08 +0000 (-0400) Subject: move gui_changed() signal from Route to Stripable X-Git-Tag: 5.0-pre1~582 X-Git-Url: https://main.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=fcf49de77401930db34ca4dfb1fff6bea0a7a987 move gui_changed() signal from Route to Stripable --- diff --git a/libs/ardour/ardour/route.h b/libs/ardour/ardour/route.h index 195421b231..9d16c00ba3 100644 --- a/libs/ardour/ardour/route.h +++ b/libs/ardour/ardour/route.h @@ -368,10 +368,6 @@ public: /** Emitted with the process lock held */ PBD::Signal0 io_changed; - /* gui's call this for their own purposes. */ - - PBD::Signal2 gui_changed; - /* stateful */ XMLNode& get_state(); diff --git a/libs/ardour/ardour/stripable.h b/libs/ardour/ardour/stripable.h index e49767f50d..5447d8322b 100644 --- a/libs/ardour/ardour/stripable.h +++ b/libs/ardour/ardour/stripable.h @@ -79,11 +79,14 @@ class LIBARDOUR_API Stripable : public SessionObject { void set_presentation_order (PresentationInfo::order_t, bool notify_class_listeners = true); void set_presentation_order_explicit (PresentationInfo::order_t); + /* gui's call this for their own purposes. */ + + PBD::Signal2 gui_changed; + /*************************************************************** * Pure interface begins here ***************************************************************/ - virtual boost::shared_ptr peak_meter() = 0; virtual boost::shared_ptr peak_meter() const = 0;