diff options
author | David Robillard <d@drobilla.net> | 2012-04-28 02:25:35 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-28 02:25:35 +0000 |
commit | 927b169eb1787bc40ede591c7c7893a39b488d95 (patch) | |
tree | 70337e073d9ddd301e118bbda6b43481e88de4ed /ingen/client/ThreadedSigClientInterface.hpp | |
parent | eed06c66b6f54687cc148d45d00352a85ad2d3d3 (diff) | |
download | ingen-927b169eb1787bc40ede591c7c7893a39b488d95.tar.gz ingen-927b169eb1787bc40ede591c7c7893a39b488d95.tar.bz2 ingen-927b169eb1787bc40ede591c7c7893a39b488d95.zip |
Use "tail" and "head" terminology instead of "src_port" and "dst_port".
Use the same types for connect() and disconnect() parameters.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4292 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/client/ThreadedSigClientInterface.hpp')
-rw-r--r-- | ingen/client/ThreadedSigClientInterface.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp index c4859e0a..7d70113f 100644 --- a/ingen/client/ThreadedSigClientInterface.hpp +++ b/ingen/client/ThreadedSigClientInterface.hpp @@ -90,8 +90,8 @@ public: const Resource::Properties& add) { push_sig(sigc::bind(delta_slot, path, remove, add)); } - void connect(const Raul::Path& src_port_path, const Raul::Path& dst_port_path) - { push_sig(sigc::bind(connection_slot, src_port_path, dst_port_path)); } + void connect(const Raul::Path& tail, const Raul::Path& head) + { push_sig(sigc::bind(connection_slot, tail, head)); } void del(const Raul::URI& uri) { push_sig(sigc::bind(object_deleted_slot, uri)); } @@ -99,8 +99,8 @@ public: void move(const Raul::Path& old_path, const Raul::Path& new_path) { push_sig(sigc::bind(object_moved_slot, old_path, new_path)); } - void disconnect(const Raul::URI& src, const Raul::URI& dst) - { push_sig(sigc::bind(disconnection_slot, src, dst)); } + void disconnect(const Raul::Path& tail, const Raul::Path& head) + { push_sig(sigc::bind(disconnection_slot, tail, head)); } void disconnect_all(const Raul::Path& parent_patch_path, const Raul::Path& path) { push_sig(sigc::bind(disconnect_all_slot, parent_patch_path, path)); } @@ -132,7 +132,7 @@ private: sigc::slot<void, Raul::Path, Raul::Path> connection_slot; sigc::slot<void, Raul::URI> object_deleted_slot; sigc::slot<void, Raul::Path, Raul::Path> object_moved_slot; - sigc::slot<void, Raul::URI, Raul::URI> disconnection_slot; + sigc::slot<void, Raul::Path, Raul::Path> disconnection_slot; sigc::slot<void, Raul::Path, Raul::Path> disconnect_all_slot; sigc::slot<void, Raul::URI, Raul::URI, Raul::Atom> variable_change_slot; sigc::slot<void, Raul::URI, Raul::URI, Raul::Atom> property_change_slot; |