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/ThreadedSigClientInterface.hpp | 33 +++++++++++++++-------------- 1 file changed, 17 insertions(+), 16 deletions(-) (limited to 'ingen/client/ThreadedSigClientInterface.hpp') diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp index 562c5fca..dbfe23bb 100644 --- a/ingen/client/ThreadedSigClientInterface.hpp +++ b/ingen/client/ThreadedSigClientInterface.hpp @@ -67,44 +67,44 @@ public: virtual Raul::URI uri() const { return Raul::URI("ingen:/clients/sig_queue"); } void bundle_begin() - { push_sig(bundle_begin_slot); } + { push_sig(bundle_begin_slot); } void bundle_end() - { push_sig(bundle_end_slot); } + { push_sig(bundle_end_slot); } void response(int32_t id, Status status, const std::string& subject) - { push_sig(sigc::bind(response_slot, id, status, subject)); } + { push_sig(sigc::bind(response_slot, id, status, subject)); } void error(const std::string& msg) - { push_sig(sigc::bind(error_slot, msg)); } + { push_sig(sigc::bind(error_slot, msg)); } void put(const Raul::URI& path, const Resource::Properties& properties, Resource::Graph ctx=Resource::Graph::DEFAULT) - { push_sig(sigc::bind(put_slot, path, properties, ctx)); } + { push_sig(sigc::bind(put_slot, path, properties, ctx)); } void delta(const Raul::URI& path, const Resource::Properties& remove, const Resource::Properties& add) - { push_sig(sigc::bind(delta_slot, path, remove, add)); } + { push_sig(sigc::bind(delta_slot, path, remove, add)); } void connect(const Raul::Path& tail, const Raul::Path& head) - { push_sig(sigc::bind(connection_slot, tail, head)); } + { push_sig(sigc::bind(connection_slot, tail, head)); } void del(const Raul::URI& uri) - { push_sig(sigc::bind(object_deleted_slot, uri)); } + { push_sig(sigc::bind(object_deleted_slot, uri)); } void move(const Raul::Path& old_path, const Raul::Path& new_path) - { push_sig(sigc::bind(object_moved_slot, old_path, new_path)); } + { push_sig(sigc::bind(object_moved_slot, old_path, new_path)); } void disconnect(const Raul::Path& tail, const Raul::Path& head) - { push_sig(sigc::bind(disconnection_slot, tail, head)); } + { push_sig(sigc::bind(disconnection_slot, tail, head)); } void disconnect_all(const Raul::Path& graph, const Raul::Path& path) - { push_sig(sigc::bind(disconnect_all_slot, graph, path)); } + { push_sig(sigc::bind(disconnect_all_slot, graph, path)); } void set_property(const Raul::URI& subject, const Raul::URI& key, const Atom& value) - { push_sig(sigc::bind(property_change_slot, subject, key, value)); } + { push_sig(sigc::bind(property_change_slot, subject, key, value)); } /** Process all queued events - Called from GTK thread to emit signals. */ bool emit_signals() { @@ -144,15 +144,16 @@ private: Raul::SRSWQueue _sigs; + using Properties = Resource::Properties; + using Graph = Resource::Graph; + sigc::slot bundle_begin_slot; sigc::slot bundle_end_slot; sigc::slot response_slot; sigc::slot error_slot; sigc::slot new_plugin_slot; - sigc::slot put_slot; - sigc::slot delta_slot; + sigc::slot put_slot; + sigc::slot delta_slot; sigc::slot connection_slot; sigc::slot object_deleted_slot; sigc::slot object_moved_slot; -- cgit v1.2.1