summaryrefslogtreecommitdiff
path: root/comphelper/source/xml/attributelist.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/xml/attributelist.cxx')
-rw-r--r--comphelper/source/xml/attributelist.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/xml/attributelist.cxx b/comphelper/source/xml/attributelist.cxx
index cf02d5c9bbf7..a3a22134220a 100644
--- a/comphelper/source/xml/attributelist.cxx
+++ b/comphelper/source/xml/attributelist.cxx
@@ -118,7 +118,7 @@ AttributeList::~AttributeList()
void AttributeList::AddAttribute(const OUString &sName,
const OUString &sType, const OUString &sValue)
{
- m_pImpl->vecAttribute.push_back( TagAttribute_Impl(sName, sType, sValue) );
+ m_pImpl->vecAttribute.emplace_back(sName, sType, sValue );
}
void AttributeList::Clear()