From e7f9b4789d5b0971a14ac00c9bc834f7154ccb9f Mon Sep 17 00:00:00 2001 From: Adrian Kummerländer Date: Sat, 17 May 2014 13:56:59 +0200 Subject: Equalized parameter/argument naming pattern accross all external functions * names matter, from now on parameters to external functions will be called parameters uniformly instead of mixing arguments and parameters --- src/function/read_xml_file.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/function/read_xml_file.cc') diff --git a/src/function/read_xml_file.cc b/src/function/read_xml_file.cc index 6e89701..5f1d47d 100644 --- a/src/function/read_xml_file.cc +++ b/src/function/read_xml_file.cc @@ -36,10 +36,10 @@ namespace InputXSLT { xercesc::DOMDocument* FunctionReadXmlFile::constructDocument( const FilesystemContext& fsContext, - const FunctionBase::argument_tuple& arguments + const FunctionBase::parameter_tuple& parameters ) { const boost::filesystem::path filePath( - fsContext.resolve(std::get<0>(arguments)) + fsContext.resolve(std::get<0>(parameters)) ); xercesc::DOMDocument* const domDocument( -- cgit v1.2.3