From a3d92499a8c10b231db452e86a0a71900910fa4f Mon Sep 17 00:00:00 2001 From: Naffanya Date: Wed, 19 Feb 2014 00:09:24 +0200 Subject: [PATCH] Add ability to get of value of parameter 'tariff' with name 'tariffName' --- projects/stargazer/plugins/other/rscript/rscript.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/projects/stargazer/plugins/other/rscript/rscript.cpp b/projects/stargazer/plugins/other/rscript/rscript.cpp index 725bc3f1..4a9e8d32 100644 --- a/projects/stargazer/plugins/other/rscript/rscript.cpp +++ b/projects/stargazer/plugins/other/rscript/rscript.cpp @@ -429,7 +429,11 @@ for(it = rsSettings.GetUserParams().begin(); it != rsSettings.GetUserParams().end(); ++it) { - std::string parameter(rsu.user->GetParamValue(it->c_str())); + std::string parameter; + if (it->c_str() == "tariffName") + parameter = rsu.user->GetParamValue("tariff"); + else + parameter = rsu.user->GetParamValue(it->c_str()); if (params.length() + parameter.length() > RS_PARAMS_LEN - 1) break; params += parameter + " "; -- 2.43.2