summaryrefslogtreecommitdiffstats
path: root/src/gui/NodeModule.hpp
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 /src/gui/NodeModule.hpp
parent3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2 (diff)
downloadingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.gz
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.bz2
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.zip
Fix inconsistent parameter names
Diffstat (limited to 'src/gui/NodeModule.hpp')
-rw-r--r--src/gui/NodeModule.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/NodeModule.hpp b/src/gui/NodeModule.hpp
index 86103a03..f2381999 100644
--- a/src/gui/NodeModule.hpp
+++ b/src/gui/NodeModule.hpp
@@ -49,7 +49,7 @@ public:
static NodeModule* create(
GraphCanvas& canvas,
SPtr<const Client::BlockModel> block,
- bool human_names);
+ bool human);
virtual ~NodeModule();
@@ -57,9 +57,9 @@ public:
Port* port(SPtr<const Client::PortModel> model);
- void delete_port_view(SPtr<const Client::PortModel> port);
+ void delete_port_view(SPtr<const Client::PortModel> model);
- virtual void store_location(double x, double y);
+ virtual void store_location(double ax, double ay);
void show_human_names(bool b);
SPtr<const Client::BlockModel> block() const { return _block; }
@@ -79,7 +79,7 @@ protected:
bool on_selected(gboolean selected);
void rename();
- void property_changed(const Raul::URI& predicate, const Atom& value);
+ void property_changed(const Raul::URI& key, const Atom& value);
void new_port_view(SPtr<const Client::PortModel> port);