forked from organicmaps/organicmaps
Removed unnecessary copy.
This commit is contained in:
parent
40a6823ba6
commit
f80f6e214d
2 changed files with 4 additions and 4 deletions
|
@ -310,14 +310,14 @@ 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 const & value)
|
||||
{
|
||||
auto tag = FindTag(m_document, key);
|
||||
if (!tag)
|
||||
{
|
||||
tag = GetRootNode().append_child("tag");
|
||||
tag.append_attribute("k") = key.data();
|
||||
tag.append_attribute("v") = value.data();
|
||||
tag.append_attribute("k").set_value(key.c_str());
|
||||
tag.append_attribute("v").set_value(value.c_str());
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -150,7 +150,7 @@ public:
|
|||
}
|
||||
|
||||
string GetTagValue(string const & key) const;
|
||||
void SetTagValue(string const & key, string const value);
|
||||
void SetTagValue(string const & key, string const & value);
|
||||
|
||||
string GetAttribute(string const & key) const;
|
||||
void SetAttribute(string const & key, string const & value);
|
||||
|
|
Loading…
Add table
Reference in a new issue