summaryrefslogtreecommitdiffstats
path: root/ingen/client
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-12-25 13:50:13 -0500
committerDavid Robillard <d@drobilla.net>2017-12-25 16:26:13 -0500
commit25177612b20f7d3ebd4138fed9cd9acffec7e756 (patch)
tree8f060c9cb370eeb4a94f63a0fa5386b44f65efa6 /ingen/client
parent3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2 (diff)
downloadingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.gz
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.bz2
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.zip
Fix inconsistent parameter names
Diffstat (limited to 'ingen/client')
-rw-r--r--ingen/client/BlockModel.hpp2
-rw-r--r--ingen/client/ClientStore.hpp2
-rw-r--r--ingen/client/GraphModel.hpp2
-rw-r--r--ingen/client/ObjectModel.hpp2
-rw-r--r--ingen/client/PluginModel.hpp2
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;