summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphPortModule.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/GraphPortModule.hpp
parent3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2 (diff)
downloadingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.gz
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.bz2
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.zip
Fix inconsistent parameter names
Diffstat (limited to 'src/gui/GraphPortModule.hpp')
-rw-r--r--src/gui/GraphPortModule.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/GraphPortModule.hpp b/src/gui/GraphPortModule.hpp
index 9722e330..79229be6 100644
--- a/src/gui/GraphPortModule.hpp
+++ b/src/gui/GraphPortModule.hpp
@@ -52,7 +52,7 @@ public:
App& app() const;
- virtual void store_location(double x, double y);
+ virtual void store_location(double ax, double ay);
void show_human_names(bool b);
void set_name(const std::string& n);
@@ -68,7 +68,7 @@ protected:
void set_port(Port* port) { _port = port; }
- void property_changed(const Raul::URI& predicate, const Atom& value);
+ void property_changed(const Raul::URI& key, const Atom& value);
SPtr<const Client::PortModel> _model;
Port* _port;