From bcdedde58a39ec0008e75fcc31e975551c68ab15 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 28 Apr 2012 02:28:49 +0000 Subject: Remove unused slots and signals. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4293 a436a847-0d15-0410-975c-d299462d15a1 --- ingen/client/SigClientInterface.hpp | 4 ---- ingen/client/ThreadedSigClientInterface.hpp | 6 ------ 2 files changed, 10 deletions(-) (limited to 'ingen/client') diff --git a/ingen/client/SigClientInterface.hpp b/ingen/client/SigClientInterface.hpp index 5c676efe..319ed228 100644 --- a/ingen/client/SigClientInterface.hpp +++ b/ingen/client/SigClientInterface.hpp @@ -47,8 +47,6 @@ public: INGEN_SIGNAL(bundle_begin, void) INGEN_SIGNAL(bundle_end, void) INGEN_SIGNAL(error, void, std::string) - INGEN_SIGNAL(new_patch, void, Raul::Path, uint32_t) - INGEN_SIGNAL(new_port, void, Raul::Path, Raul::URI, uint32_t, bool) INGEN_SIGNAL(put, void, Raul::URI, Resource::Properties, Resource::Graph) INGEN_SIGNAL(delta, void, Raul::URI, Resource::Properties, Resource::Properties) INGEN_SIGNAL(object_moved, void, Raul::Path, Raul::Path) @@ -56,9 +54,7 @@ public: INGEN_SIGNAL(connection, void, Raul::Path, Raul::Path) INGEN_SIGNAL(disconnection, void, Raul::Path, Raul::Path) INGEN_SIGNAL(disconnect_all, void, Raul::Path, Raul::Path) - INGEN_SIGNAL(variable_change, void, Raul::URI, Raul::URI, Raul::Atom) INGEN_SIGNAL(property_change, void, Raul::URI, Raul::URI, Raul::Atom) - INGEN_SIGNAL(port_value, void, Raul::Path, Raul::Atom) /** Fire pending signals. Only does anything on derived classes (that may queue) */ virtual bool emit_signals() { return false; } diff --git a/ingen/client/ThreadedSigClientInterface.hpp b/ingen/client/ThreadedSigClientInterface.hpp index 7d70113f..096920bd 100644 --- a/ingen/client/ThreadedSigClientInterface.hpp +++ b/ingen/client/ThreadedSigClientInterface.hpp @@ -54,16 +54,13 @@ public: : _sigs(queue_size) , response_slot(_signal_response.make_slot()) , error_slot(_signal_error.make_slot()) - , new_port_slot(_signal_new_port.make_slot()) , put_slot(_signal_put.make_slot()) , connection_slot(_signal_connection.make_slot()) , object_deleted_slot(_signal_object_deleted.make_slot()) , object_moved_slot(_signal_object_moved.make_slot()) , disconnection_slot(_signal_disconnection.make_slot()) , disconnect_all_slot(_signal_disconnect_all.make_slot()) - , variable_change_slot(_signal_variable_change.make_slot()) , property_change_slot(_signal_property_change.make_slot()) - , port_value_slot(_signal_port_value.make_slot()) {} virtual Raul::URI uri() const { return "http://drobilla.net/ns/ingen#internal"; } @@ -124,7 +121,6 @@ private: sigc::slot response_slot; sigc::slot error_slot; sigc::slot new_plugin_slot; - sigc::slot new_port_slot; sigc::slot put_slot; sigc::slot object_moved_slot; sigc::slot disconnection_slot; sigc::slot disconnect_all_slot; - sigc::slot variable_change_slot; sigc::slot property_change_slot; - sigc::slot port_value_slot; }; } // namespace Client -- cgit v1.2.1