diff options
author | David Robillard <d@drobilla.net> | 2020-07-18 12:02:29 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-01 11:50:43 +0200 |
commit | 727020da03e5212e803373c20a4fbd9b4e51b55c (patch) | |
tree | f70be41bbf1cab63c822bd9e9bd41ab410aadd1a /ingen/client | |
parent | f91c823b73ad74fe9d1b6785ec6c17db1713ca35 (diff) | |
download | ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.tar.gz ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.tar.bz2 ingen-727020da03e5212e803373c20a4fbd9b4e51b55c.zip |
Remove superfluous semicolons
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/BlockModel.hpp | 4 | ||||
-rw-r--r-- | ingen/client/ClientStore.hpp | 6 | ||||
-rw-r--r-- | ingen/client/GraphModel.hpp | 8 | ||||
-rw-r--r-- | ingen/client/ObjectModel.hpp | 12 | ||||
-rw-r--r-- | ingen/client/PluginModel.hpp | 6 | ||||
-rw-r--r-- | ingen/client/PluginUI.hpp | 2 | ||||
-rw-r--r-- | ingen/client/PortModel.hpp | 6 |
7 files changed, 22 insertions, 22 deletions
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<const PortModel>& port) const; // Signals - INGEN_SIGNAL(new_port, void, SPtr<const PortModel>); - INGEN_SIGNAL(removed_port, void, SPtr<const PortModel>); + INGEN_SIGNAL(new_port, void, SPtr<const PortModel>) + INGEN_SIGNAL(removed_port, void, SPtr<const PortModel>) 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<ObjectModel>); - INGEN_SIGNAL(new_plugin, void, SPtr<PluginModel>); - INGEN_SIGNAL(plugin_deleted, void, URI); + INGEN_SIGNAL(new_object, void, SPtr<ObjectModel>) + INGEN_SIGNAL(new_plugin, void, SPtr<PluginModel>) + INGEN_SIGNAL(plugin_deleted, void, URI) private: SPtr<ObjectModel> _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<BlockModel>); - INGEN_SIGNAL(removed_block, void, SPtr<BlockModel>); - INGEN_SIGNAL(new_arc, void, SPtr<ArcModel>); - INGEN_SIGNAL(removed_arc, void, SPtr<ArcModel>); + INGEN_SIGNAL(new_block, void, SPtr<BlockModel>) + INGEN_SIGNAL(removed_block, void, SPtr<BlockModel>) + INGEN_SIGNAL(new_arc, void, SPtr<ArcModel>) + INGEN_SIGNAL(removed_arc, void, SPtr<ArcModel>) 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<ObjectModel>); - INGEN_SIGNAL(removed_child, void, SPtr<ObjectModel>); - 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<ObjectModel>) + INGEN_SIGNAL(removed_child, void, SPtr<ObjectModel>) + 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<const BlockModel> 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; |