From a659a13c531e991851e013db3d4223bf16a343b8 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 24 Jan 2014 17:28:43 +0000 Subject: Fix various whitespace and formatting issues. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5325 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/client/SigClientInterface.hpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'ingen/client/SigClientInterface.hpp') diff --git a/ingen/client/SigClientInterface.hpp b/ingen/client/SigClientInterface.hpp index 2210d4f4..07e6e333 100644 --- a/ingen/client/SigClientInterface.hpp +++ b/ingen/client/SigClientInterface.hpp @@ -70,44 +70,44 @@ protected: #define EMIT(name, ...) { _signal_ ## name (__VA_ARGS__); } void bundle_begin() - { EMIT(bundle_begin); } + { EMIT(bundle_begin); } void bundle_end() - { EMIT(bundle_end); } + { EMIT(bundle_end); } void response(int32_t id, Status status, const std::string& subject) - { EMIT(response, id, status, subject); } + { EMIT(response, id, status, subject); } void error(const std::string& msg) - { EMIT(error, msg); } + { EMIT(error, msg); } void put(const Raul::URI& uri, const Resource::Properties& properties, Resource::Graph ctx=Resource::Graph::DEFAULT) - { EMIT(put, uri, properties, ctx); } + { EMIT(put, uri, properties, ctx); } void delta(const Raul::URI& uri, const Resource::Properties& remove, const Resource::Properties& add) - { EMIT(delta, uri, remove, add); } + { EMIT(delta, uri, remove, add); } void connect(const Raul::Path& tail, const Raul::Path& head) - { EMIT(connection, tail, head); } + { EMIT(connection, tail, head); } void del(const Raul::URI& uri) - { EMIT(object_deleted, uri); } + { EMIT(object_deleted, uri); } void move(const Raul::Path& old_path, const Raul::Path& new_path) - { EMIT(object_moved, old_path, new_path); } + { EMIT(object_moved, old_path, new_path); } void disconnect(const Raul::Path& tail, const Raul::Path& head) - { EMIT(disconnection, tail, head); } + { EMIT(disconnection, tail, head); } void disconnect_all(const Raul::Path& graph, const Raul::Path& path) - { EMIT(disconnect_all, graph, path); } + { EMIT(disconnect_all, graph, path); } void set_property(const Raul::URI& subject, const Raul::URI& key, const Atom& value) - { EMIT(property_change, subject, key, value); } + { EMIT(property_change, subject, key, value); } void set_response_id(int32_t id) {} void get(const Raul::URI& uri) {} -- cgit v1.2.1