From af665803f64b8e4ce7e7c184beb1f33e17c3595f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 9 Jun 2015 13:52:32 +0000 Subject: Fix partial commit. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5693 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/client/SigClientInterface.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ingen/client/SigClientInterface.hpp') diff --git a/ingen/client/SigClientInterface.hpp b/ingen/client/SigClientInterface.hpp index d5e6ab5f..72e34422 100644 --- a/ingen/client/SigClientInterface.hpp +++ b/ingen/client/SigClientInterface.hpp @@ -54,7 +54,7 @@ public: INGEN_SIGNAL(error, void, std::string) INGEN_SIGNAL(put, void, Raul::URI, Resource::Properties, Resource::Graph) INGEN_SIGNAL(delta, void, Raul::URI, Resource::Properties, Resource::Properties) - INGEN_SIGNAL(object_copied, void, Raul::Path, Raul::URI) + INGEN_SIGNAL(object_copied, void, Raul::URI, Raul::URI) INGEN_SIGNAL(object_moved, void, Raul::Path, Raul::Path) INGEN_SIGNAL(object_deleted, void, Raul::URI) INGEN_SIGNAL(connection, void, Raul::Path, Raul::Path) @@ -99,8 +99,8 @@ protected: void del(const Raul::URI& uri) { EMIT(object_deleted, uri); } - void copy(const Raul::Path& old_path, const Raul::URI& new_uri) - { EMIT(object_copied, old_path, new_uri); } + void copy(const Raul::URI& old_uri, const Raul::URI& new_uri) + { EMIT(object_copied, old_uri, new_uri); } void move(const Raul::Path& old_path, const Raul::Path& new_path) { EMIT(object_moved, old_path, new_path); } -- cgit v1.2.1