From da33ac899a390ac13abbc6fba36d1b5c1d65d267 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 26 Mar 2017 22:32:53 +0200 Subject: Add properties parameter to delete interface --- ingen/client/ThreadedSigClientInterface.hpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'ingen/client/ThreadedSigClientInterface.hpp') diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp index 219fd8d1..d9a88eee 100644 --- a/ingen/client/ThreadedSigClientInterface.hpp +++ b/ingen/client/ThreadedSigClientInterface.hpp @@ -94,8 +94,9 @@ public: 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)); } + void del(const Raul::URI& uri, + const Properties& properties = Properties()) + { push_sig(sigc::bind(object_deleted_slot, uri, properties)); } void move(const Raul::Path& old_path, const Raul::Path& new_path) { push_sig(sigc::bind(object_moved_slot, old_path, new_path)); } @@ -165,7 +166,7 @@ private: sigc::slot put_slot; sigc::slot delta_slot; sigc::slot connection_slot; - sigc::slot object_deleted_slot; + sigc::slot object_deleted_slot; sigc::slot object_moved_slot; sigc::slot object_copied_slot; sigc::slot disconnection_slot; -- cgit v1.2.1