summaryrefslogtreecommitdiffstats
path: root/ingen/Resource.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 /ingen/Resource.hpp
parent3f6d53e423bd809b9c8ae807d28c61e99ce0a2f2 (diff)
downloadingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.gz
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.tar.bz2
ingen-25177612b20f7d3ebd4138fed9cd9acffec7e756.zip
Fix inconsistent parameter names
Diffstat (limited to 'ingen/Resource.hpp')
-rw-r--r--ingen/Resource.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ingen/Resource.hpp b/ingen/Resource.hpp
index aa047e51..8cfdb02a 100644
--- a/ingen/Resource.hpp
+++ b/ingen/Resource.hpp
@@ -142,17 +142,17 @@ public:
* for one property may exist in `p` will all be set (unlike simply
* calling set_property in a loop which would only set one value).
*/
- void set_properties(const Properties& p);
+ void set_properties(const Properties& props);
/** Add several properties at once. */
- void add_properties(const Properties& p);
+ void add_properties(const Properties& props);
/** Remove several properties at once.
*
* This removes all matching properties (both key and value), or all
* properties with a matching key if the value in `p` is patch:wildcard.
*/
- void remove_properties(const Properties& p);
+ void remove_properties(const Properties& props);
/** Hook called whenever a property is added.
*