summaryrefslogtreecommitdiffstats
path: root/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx')
-rw-r--r--xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
index 40ca17543de1..795aa5838218 100644
--- a/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
+++ b/xmloff/source/core/unointerfacetouniqueidentifiermapper.cxx
@@ -46,7 +46,7 @@ const OUString& UnoInterfaceToUniqueIdentifierMapper::registerReference( const R
{
OUString aId( "id" );
aId += OUString::number( mnNextId++ );
- return (*maEntries.insert( IdMap_t::value_type( aId, xRef ) ).first).first;
+ return (*maEntries.emplace( aId, xRef ).first).first;
}
}