From a82805f8f97eeb6acadd7806cdb7120bed45a376 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 24 Apr 2016 20:11:47 +0200 Subject: Kill comphelper::MakeMap Change-Id: I97e9e79ef51e3d78f01b831dd3eee91218058823 Reviewed-on: https://gerrit.libreoffice.org/24344 Reviewed-by: Stephan Bergmann Tested-by: Stephan Bergmann --- chart2/source/view/main/ShapeFactory.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chart2/source/view/main/ShapeFactory.cxx') diff --git a/chart2/source/view/main/ShapeFactory.cxx b/chart2/source/view/main/ShapeFactory.cxx index fe022f0613ce..be3064fbc286 100644 --- a/chart2/source/view/main/ShapeFactory.cxx +++ b/chart2/source/view/main/ShapeFactory.cxx @@ -24,7 +24,6 @@ #include "macros.hxx" #include "RelativeSizeHelper.hxx" #include "PropertyMapper.hxx" -#include #include #include #include @@ -2268,8 +2267,9 @@ uno::Reference< drawing::XShape > tPropertyNameValueMap aValueMap; //fill line-, fill- and paragraph-properties into the ValueMap { - tMakePropertyNameMap aNameMap = PropertyMapper::getPropertyNameMapForParagraphProperties(); - aNameMap( PropertyMapper::getPropertyNameMapForFillAndLineProperties() ); + tPropertyNameMap aNameMap = PropertyMapper::getPropertyNameMapForParagraphProperties(); + auto const & add = PropertyMapper::getPropertyNameMapForFillAndLineProperties(); + aNameMap.insert(add.begin(), add.end()); PropertyMapper::getValueMap( aValueMap, aNameMap, xTextProperties ); } -- cgit