diff options
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/BlockModel.hpp | 2 | ||||
-rw-r--r-- | ingen/client/ClientStore.hpp | 2 | ||||
-rw-r--r-- | ingen/client/GraphModel.hpp | 2 | ||||
-rw-r--r-- | ingen/client/ObjectModel.hpp | 2 | ||||
-rw-r--r-- | ingen/client/PluginModel.hpp | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/ingen/client/BlockModel.hpp b/ingen/client/BlockModel.hpp index e689414c..22613eca 100644 --- a/ingen/client/BlockModel.hpp +++ b/ingen/client/BlockModel.hpp @@ -96,7 +96,7 @@ protected: void add_child(SPtr<ObjectModel> c); bool remove_child(SPtr<ObjectModel> c); void add_port(SPtr<PortModel> pm); - void remove_port(SPtr<PortModel> pm); + void remove_port(SPtr<PortModel> port); void remove_port(const Raul::Path& port_path); void set(SPtr<ObjectModel> model); diff --git a/ingen/client/ClientStore.hpp b/ingen/client/ClientStore.hpp index 45662afb..8850f401 100644 --- a/ingen/client/ClientStore.hpp +++ b/ingen/client/ClientStore.hpp @@ -105,7 +105,7 @@ private: void add_object(SPtr<ObjectModel> object); SPtr<ObjectModel> remove_object(const Raul::Path& path); - void add_plugin(SPtr<PluginModel> plugin); + void add_plugin(SPtr<PluginModel> pm); SPtr<GraphModel> connection_graph(const Raul::Path& tail_path, const Raul::Path& head_path); diff --git a/ingen/client/GraphModel.hpp b/ingen/client/GraphModel.hpp index 52c5ed2c..ef072d87 100644 --- a/ingen/client/GraphModel.hpp +++ b/ingen/client/GraphModel.hpp @@ -60,7 +60,7 @@ private: void clear(); void add_child(SPtr<ObjectModel> c); - bool remove_child(SPtr<ObjectModel> c); + bool remove_child(SPtr<ObjectModel> o); void remove_arcs_on(SPtr<PortModel> p); void add_arc(SPtr<ArcModel> arc); diff --git a/ingen/client/ObjectModel.hpp b/ingen/client/ObjectModel.hpp index a8210ac0..4250efc5 100644 --- a/ingen/client/ObjectModel.hpp +++ b/ingen/client/ObjectModel.hpp @@ -89,7 +89,7 @@ protected: virtual void add_child(SPtr<ObjectModel> c) {} virtual bool remove_child(SPtr<ObjectModel> c) { return true; } - virtual void set(SPtr<ObjectModel> model); + virtual void set(SPtr<ObjectModel> o); SPtr<ObjectModel> _parent; diff --git a/ingen/client/PluginModel.hpp b/ingen/client/PluginModel.hpp index d6b253f3..585ac7d7 100644 --- a/ingen/client/PluginModel.hpp +++ b/ingen/client/PluginModel.hpp @@ -65,7 +65,7 @@ public: Raul::Symbol default_block_symbol() const; std::string human_name() const; - std::string port_human_name(uint32_t index) const; + std::string port_human_name(uint32_t i) const; typedef std::map<float, std::string> ScalePoints; ScalePoints port_scale_points(uint32_t i) const; |