From 25177612b20f7d3ebd4138fed9cd9acffec7e756 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 25 Dec 2017 13:50:13 -0500 Subject: Fix inconsistent parameter names --- src/URIs.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/URIs.cpp') diff --git a/src/URIs.cpp b/src/URIs.cpp index a46c18bc..3e56e4f4 100644 --- a/src/URIs.cpp +++ b/src/URIs.cpp @@ -39,11 +39,11 @@ namespace Ingen { URIs::Quark::Quark(Forge& forge, URIMap* map, LilvWorld* lworld, - const char* c_str) - : Raul::URI(c_str) - , urid(forge.make_urid(Raul::URI(c_str))) - , uri(forge.alloc_uri(c_str)) - , lnode(lilv_new_uri(lworld, c_str)) + const char* str) + : Raul::URI(str) + , urid(forge.make_urid(Raul::URI(str))) + , uri(forge.alloc_uri(str)) + , lnode(lilv_new_uri(lworld, str)) {} URIs::Quark::Quark(const Quark& copy) @@ -61,8 +61,8 @@ URIs::Quark::~Quark() #define NS_RDF "http://www.w3.org/1999/02/22-rdf-syntax-ns#" #define NS_RDFS "http://www.w3.org/2000/01/rdf-schema#" -URIs::URIs(Forge& f, URIMap* map, LilvWorld* lworld) - : forge(f) +URIs::URIs(Forge& forge, URIMap* map, LilvWorld* lworld) + : forge(forge) , atom_AtomPort (forge, map, lworld, LV2_ATOM__AtomPort) , atom_Bool (forge, map, lworld, LV2_ATOM__Bool) , atom_Chunk (forge, map, lworld, LV2_ATOM__Chunk) -- cgit v1.2.1