summaryrefslogtreecommitdiff
path: root/protocols/JabberG/src/jabber_xml.h
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2019-02-20 14:10:38 +0300
committerGeorge Hazan <ghazan@miranda.im>2019-02-20 14:10:38 +0300
commit5ca3082957a2ca4a3beda55c0d06607ee322df01 (patch)
tree950d0759f0445e3d1cca40e3cfad45d01bd5b60c /protocols/JabberG/src/jabber_xml.h
parente8ae74d22d71d5d32e6384c95f3ffedcc840b31d (diff)
and one more fix for #1854
Diffstat (limited to 'protocols/JabberG/src/jabber_xml.h')
-rw-r--r--protocols/JabberG/src/jabber_xml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/JabberG/src/jabber_xml.h b/protocols/JabberG/src/jabber_xml.h
index 69bff6c7e1..84be255ba5 100644
--- a/protocols/JabberG/src/jabber_xml.h
+++ b/protocols/JabberG/src/jabber_xml.h
@@ -85,7 +85,7 @@ struct XATTR
__forceinline TiXmlElement *operator<<(TiXmlElement *node, const XATTR& attr)
{
- node->SetAttribute(attr.name, attr.value);
+ XmlAddAttr(node, attr.name, attr.value);
return node;
}