summaryrefslogtreecommitdiff
path: root/svgio/source/svgreader/svgdocument.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svgio/source/svgreader/svgdocument.cxx')
-rw-r--r--svgio/source/svgreader/svgdocument.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svgio/source/svgreader/svgdocument.cxx b/svgio/source/svgreader/svgdocument.cxx
index 227ad4ae40d6..44fb0d507eec 100644
--- a/svgio/source/svgreader/svgdocument.cxx
+++ b/svgio/source/svgreader/svgdocument.cxx
@@ -51,7 +51,7 @@ namespace svgio
{
if(!rStr.isEmpty())
{
- maIdTokenMapperList.insert(IdTokenValueType(rStr, &rNode));
+ maIdTokenMapperList.emplace(rStr, &rNode);
}
}
@@ -81,7 +81,7 @@ namespace svgio
{
if(!rStr.isEmpty())
{
- maIdStyleTokenMapperList.insert(IdStyleTokenValueType(rStr, &rSvgStyleAttributes));
+ maIdStyleTokenMapperList.emplace(rStr, &rSvgStyleAttributes);
}
}