From 1f1758f4dda0ddaf01c0b1d3a756f9db8ddc979d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 20 Apr 2011 15:27:34 +0000 Subject: Make disconnect take URI parameters (for wildcare URI towards killing disconnect_all). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3183 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/SigClientInterface.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client/SigClientInterface.hpp') diff --git a/src/client/SigClientInterface.hpp b/src/client/SigClientInterface.hpp index 7d968524..fc5201e1 100644 --- a/src/client/SigClientInterface.hpp +++ b/src/client/SigClientInterface.hpp @@ -57,7 +57,7 @@ public: sigc::signal signal_object_moved; sigc::signal signal_object_deleted; sigc::signal signal_connection; - sigc::signal signal_disconnection; + sigc::signal signal_disconnection; sigc::signal signal_disconnect_all; sigc::signal signal_variable_change; sigc::signal signal_property_change; @@ -107,8 +107,8 @@ protected: void move(const Raul::Path& old_path, const Raul::Path& new_path) { EMIT(object_moved, old_path, new_path); } - void disconnect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path) - { EMIT(disconnection, src_port_path, dst_port_path); } + void disconnect(const Raul::URI& src, const Raul::URI& dst) + { EMIT(disconnection, src, dst); } void disconnect_all(const Raul::Path& parent_patch_path, const Raul::Path& path) { EMIT(disconnect_all, parent_patch_path, path); } -- cgit v1.2.1