Skip to content
Snippets Groups Projects
Commit 4644c36f authored by Christoph Pohl's avatar Christoph Pohl
Browse files

Fix wrong behavior when list have non trivial members

parent d54b62b2
No related branches found
No related tags found
No related merge requests found
......@@ -87,14 +87,18 @@ namespace armarx::aron::component_config
auto type = type::List::DynamicCast(t);
auto old_list = data::List::DynamicCast(o);
old_list->clear();
std::string list;
property_user_->getProperty(list, name);
std::vector<std::string> vector = simox::alg::split(list, ",");
auto get_list = [this, & name]() -> std::vector<std::string>
{
std::string list;
property_user_->getProperty(list, name);
return simox::alg::split(list, ",");
};
int i = 0;
switch (type->getAcceptedType()->getDescriptor())
{
case type::Descriptor::INT:
{
std::vector<std::string> vector = get_list();
std::for_each(vector.begin(), vector.end(), [&old_list, &i](const auto& el){
old_list->addElement(make_int(std::stoi(el), old_list->getPath().withIndex(i)));
i++;
......@@ -103,6 +107,7 @@ namespace armarx::aron::component_config
}
case type::Descriptor::STRING:
{
std::vector<std::string> vector = get_list();
std::for_each(vector.begin(), vector.end(), [&old_list, &i](const auto& el){
old_list->addElement(make_string(el, old_list->getPath().withIndex(i)));
i++;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment