From 9a99f038176a7fadc59bbeaa3d3d57f16e4abb74 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 23 Sep 2011 18:11:49 +0000 Subject: Animate audio port colours based on levels. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3475 a436a847-0d15-0410-975c-d299462d15a1 --- include/ingen/client/ThreadedSigClientInterface.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/ingen/client/ThreadedSigClientInterface.hpp') diff --git a/include/ingen/client/ThreadedSigClientInterface.hpp b/include/ingen/client/ThreadedSigClientInterface.hpp index c30b62da..64901e8f 100644 --- a/include/ingen/client/ThreadedSigClientInterface.hpp +++ b/include/ingen/client/ThreadedSigClientInterface.hpp @@ -113,8 +113,8 @@ public: void set_property(const Raul::URI& subject, const Raul::URI& key, const Raul::Atom& value) { push_sig(sigc::bind(property_change_slot, subject, key, value)); } - void activity(const Raul::Path& port_path) - { push_sig(sigc::bind(activity_slot, port_path)); } + void activity(const Raul::Path& port_path, const Raul::Atom& value) + { push_sig(sigc::bind(activity_slot, port_path, value)); } /** Process all queued events - Called from GTK thread to emit signals. */ bool emit_signals(); @@ -146,7 +146,7 @@ private: sigc::slot variable_change_slot; sigc::slot property_change_slot; sigc::slot port_value_slot; - sigc::slot activity_slot; + sigc::slot activity_slot; }; } // namespace Client -- cgit v1.2.1