diff --git a/editor/xml_feature.cpp b/editor/xml_feature.cpp index c125725efb..f4a7da6ca6 100644 --- a/editor/xml_feature.cpp +++ b/editor/xml_feature.cpp @@ -105,7 +105,7 @@ bool XMLFeature::operator==(XMLFeature const & other) const vector XMLFeature::FromOSM(string const & osmXml) { pugi::xml_document doc; - if (doc.load_string(osmXml.c_str()).status != pugi::status_ok) + if (doc.load_string(osmXml.data()).status != pugi::status_ok) MYTHROW(editor::InvalidXML, ("Not valid XML:", osmXml)); vector features; @@ -349,14 +349,15 @@ string XMLFeature::GetTagValue(string const & key) const return tag.attribute("v").value(); } -void XMLFeature::SetTagValue(string const & key, string const & value) +void XMLFeature::SetTagValue(string const & key, string value) { + strings::Trim(value); auto tag = FindTag(m_document, key); if (!tag) { tag = GetRootNode().append_child("tag"); - tag.append_attribute("k").set_value(key.c_str()); - tag.append_attribute("v").set_value(value.c_str()); + tag.append_attribute("k").set_value(key.data()); + tag.append_attribute("v").set_value(value.data()); } else { diff --git a/editor/xml_feature.hpp b/editor/xml_feature.hpp index 5b1c54d99e..d6bbf67985 100644 --- a/editor/xml_feature.hpp +++ b/editor/xml_feature.hpp @@ -155,7 +155,7 @@ public: } string GetTagValue(string const & key) const; - void SetTagValue(string const & key, string const & value); + void SetTagValue(string const & key, string value); string GetAttribute(string const & key) const; void SetAttribute(string const & key, string const & value); diff --git a/indexer/editable_map_object.cpp b/indexer/editable_map_object.cpp index 730f3bbe89..db2c5c760a 100644 --- a/indexer/editable_map_object.cpp +++ b/indexer/editable_map_object.cpp @@ -61,8 +61,9 @@ void EditableMapObject::SetEditableProperties(osm::EditableProperties const & pr void EditableMapObject::SetName(StringUtf8Multilang const & name) { m_name = name; } -void EditableMapObject::SetName(string const & name, int8_t langCode) +void EditableMapObject::SetName(string name, int8_t langCode) { + strings::Trim(name); if (!name.empty()) m_name.AddString(langCode, name); } diff --git a/indexer/editable_map_object.hpp b/indexer/editable_map_object.hpp index 747082bf0d..64ee930028 100644 --- a/indexer/editable_map_object.hpp +++ b/indexer/editable_map_object.hpp @@ -74,7 +74,7 @@ public: void SetEditableProperties(osm::EditableProperties const & props); // void SetFeatureID(FeatureID const & fid); void SetName(StringUtf8Multilang const & name); - void SetName(string const & name, int8_t langCode = StringUtf8Multilang::kDefaultCode); + void SetName(string name, int8_t langCode = StringUtf8Multilang::kDefaultCode); void SetMercator(m2::PointD const & center); void SetType(uint32_t featureType); void SetID(FeatureID const & fid);