From 727020da03e5212e803373c20a4fbd9b4e51b55c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 18 Jul 2020 12:02:29 +0200 Subject: Remove superfluous semicolons --- ingen/client/BlockModel.hpp | 4 ++-- ingen/client/ClientStore.hpp | 6 +++--- ingen/client/GraphModel.hpp | 8 ++++---- ingen/client/ObjectModel.hpp | 12 ++++++------ ingen/client/PluginModel.hpp | 6 +++--- ingen/client/PluginUI.hpp | 2 +- ingen/client/PortModel.hpp | 6 +++--- 7 files changed, 22 insertions(+), 22 deletions(-) (limited to 'ingen') diff --git a/ingen/client/BlockModel.hpp b/ingen/client/BlockModel.hpp index d1f754bd..511e5712 100644 --- a/ingen/client/BlockModel.hpp +++ b/ingen/client/BlockModel.hpp @@ -78,8 +78,8 @@ public: std::string port_label(const SPtr& port) const; // Signals - INGEN_SIGNAL(new_port, void, SPtr); - INGEN_SIGNAL(removed_port, void, SPtr); + INGEN_SIGNAL(new_port, void, SPtr) + INGEN_SIGNAL(removed_port, void, SPtr) protected: friend class ClientStore; diff --git a/ingen/client/ClientStore.hpp b/ingen/client/ClientStore.hpp index 7d83e9f6..9576cd3c 100644 --- a/ingen/client/ClientStore.hpp +++ b/ingen/client/ClientStore.hpp @@ -98,9 +98,9 @@ public: void operator()(const SetProperty&); void operator()(const Undo&) {} - INGEN_SIGNAL(new_object, void, SPtr); - INGEN_SIGNAL(new_plugin, void, SPtr); - INGEN_SIGNAL(plugin_deleted, void, URI); + INGEN_SIGNAL(new_object, void, SPtr) + INGEN_SIGNAL(new_plugin, void, SPtr) + INGEN_SIGNAL(plugin_deleted, void, URI) private: SPtr _object(const Raul::Path& path); diff --git a/ingen/client/GraphModel.hpp b/ingen/client/GraphModel.hpp index c3339048..c11c419e 100644 --- a/ingen/client/GraphModel.hpp +++ b/ingen/client/GraphModel.hpp @@ -51,10 +51,10 @@ public: uint32_t internal_poly() const; // Signals - INGEN_SIGNAL(new_block, void, SPtr); - INGEN_SIGNAL(removed_block, void, SPtr); - INGEN_SIGNAL(new_arc, void, SPtr); - INGEN_SIGNAL(removed_arc, void, SPtr); + INGEN_SIGNAL(new_block, void, SPtr) + INGEN_SIGNAL(removed_block, void, SPtr) + INGEN_SIGNAL(new_arc, void, SPtr) + INGEN_SIGNAL(removed_arc, void, SPtr) private: friend class ClientStore; diff --git a/ingen/client/ObjectModel.hpp b/ingen/client/ObjectModel.hpp index 535bcdd2..39729377 100644 --- a/ingen/client/ObjectModel.hpp +++ b/ingen/client/ObjectModel.hpp @@ -66,12 +66,12 @@ public: Node* graph_parent() const override { return _parent.get(); } // Signals - INGEN_SIGNAL(new_child, void, SPtr); - INGEN_SIGNAL(removed_child, void, SPtr); - INGEN_SIGNAL(property, void, const URI&, const Atom&); - INGEN_SIGNAL(property_removed, void, const URI&, const Atom&); - INGEN_SIGNAL(destroyed, void); - INGEN_SIGNAL(moved, void); + INGEN_SIGNAL(new_child, void, SPtr) + INGEN_SIGNAL(removed_child, void, SPtr) + INGEN_SIGNAL(property, void, const URI&, const Atom&) + INGEN_SIGNAL(property_removed, void, const URI&, const Atom&) + INGEN_SIGNAL(destroyed, void) + INGEN_SIGNAL(moved, void) protected: friend class ClientStore; diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp index 5f43b3c4..142f28bf 100644 --- a/ingen/client/PluginModel.hpp +++ b/ingen/client/PluginModel.hpp @@ -95,9 +95,9 @@ public: static Sord::World* rdf_world() { return _rdf_world; } // Signals - INGEN_SIGNAL(changed, void); - INGEN_SIGNAL(property, void, const URI&, const Atom&); - INGEN_SIGNAL(preset, void, const URI&, const std::string&); + INGEN_SIGNAL(changed, void) + INGEN_SIGNAL(property, void, const URI&, const Atom&) + INGEN_SIGNAL(preset, void, const URI&, const std::string&) bool fetched() const { return _fetched; } void set_fetched(bool f) { _fetched = f; } diff --git a/ingen/client/PluginUI.hpp b/ingen/client/PluginUI.hpp index b80c4527..b5d467ea 100644 --- a/ingen/client/PluginUI.hpp +++ b/ingen/client/PluginUI.hpp @@ -84,7 +84,7 @@ public: const URI&, // Subject const URI&, // Predicate const Atom&, // Object - Resource::Graph); // Context + Resource::Graph) // Context ingen::World& world() const { return _world; } SPtr block() const { return _block; } diff --git a/ingen/client/PortModel.hpp b/ingen/client/PortModel.hpp index 8bdf0398..c386dff0 100644 --- a/ingen/client/PortModel.hpp +++ b/ingen/client/PortModel.hpp @@ -66,9 +66,9 @@ public: void on_property(const URI& uri, const Atom& value) override; // Signals - INGEN_SIGNAL(value_changed, void, const Atom&); - INGEN_SIGNAL(voice_changed, void, uint32_t, const Atom&); - INGEN_SIGNAL(activity, void, const Atom&); + INGEN_SIGNAL(value_changed, void, const Atom&) + INGEN_SIGNAL(voice_changed, void, uint32_t, const Atom&) + INGEN_SIGNAL(activity, void, const Atom&) private: friend class ClientStore; -- cgit v1.2.1