diff options
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/AtomWriter.hpp | 4 | ||||
-rw-r--r-- | ingen/Interface.hpp | 4 | ||||
-rw-r--r-- | ingen/client/ClientStore.hpp | 4 | ||||
-rw-r--r-- | ingen/client/SigClientInterface.hpp | 6 | ||||
-rw-r--r-- | ingen/client/ThreadedSigClientInterface.hpp | 6 |
5 files changed, 12 insertions, 12 deletions
diff --git a/ingen/AtomWriter.hpp b/ingen/AtomWriter.hpp index 20e81af9..6ae6bdbc 100644 --- a/ingen/AtomWriter.hpp +++ b/ingen/AtomWriter.hpp @@ -53,8 +53,8 @@ public: const Resource::Properties& remove, const Resource::Properties& add); - void copy(const Raul::Path& old_path, - const Raul::URI& new_uri); + void copy(const Raul::URI& old_uri, + const Raul::URI& new_uri); void move(const Raul::Path& old_path, const Raul::Path& new_path); diff --git a/ingen/Interface.hpp b/ingen/Interface.hpp index cc44b4fd..8f6e25c4 100644 --- a/ingen/Interface.hpp +++ b/ingen/Interface.hpp @@ -69,8 +69,8 @@ public: const Resource::Properties& remove, const Resource::Properties& add) = 0; - virtual void copy(const Raul::Path& old_path, - const Raul::URI& new_uri) = 0; + virtual void copy(const Raul::URI& old_uri, + const Raul::URI& new_uri) = 0; virtual void move(const Raul::Path& old_path, const Raul::Path& new_path) = 0; diff --git a/ingen/client/ClientStore.hpp b/ingen/client/ClientStore.hpp index 90127d41..9ba4aa26 100644 --- a/ingen/client/ClientStore.hpp +++ b/ingen/client/ClientStore.hpp @@ -81,8 +81,8 @@ public: const Resource::Properties& remove, const Resource::Properties& add); - void copy(const Raul::Path& old_path, - const Raul::URI& new_uri); + void copy(const Raul::URI& old_uri, + const Raul::URI& new_uri); void move(const Raul::Path& old_path, const Raul::Path& new_path); 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); } diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp index 8feca952..79795421 100644 --- a/ingen/client/ThreadedSigClientInterface.hpp +++ b/ingen/client/ThreadedSigClientInterface.hpp @@ -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 copy(const Raul::Path& old_path, const Raul::URI& new_uri) - { push_sig(sigc::bind(object_copied_slot, old_path, new_uri)); } + void copy(const Raul::URI& old_uri, const Raul::URI& new_uri) + { push_sig(sigc::bind(object_copied_slot, old_uri, new_uri)); } void disconnect(const Raul::Path& tail, const Raul::Path& head) { push_sig(sigc::bind(disconnection_slot, tail, head)); } @@ -162,7 +162,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::Path, Raul::URI> object_copied_slot; + sigc::slot<void, Raul::URI, Raul::URI> object_copied_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, Atom> property_change_slot; |