summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-12-17 22:02:06 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-12-19 17:53:06 +0100
commit46c5de832868d2812448b2caace3eeaa9237b9f6 (patch)
tree6f25538cfb7a0def54ff7ac5b6b17eb22a76178a /writerfilter
parent6dd1d2268487920e8bda44dfd169a5bda4d62f13 (diff)
make *String(string_view) constructors explicit
to make it more obvious when we are constructing heap OUStrings code and potentially inadvertently throwing away performance. And fix a handful of places so revealed. Change-Id: I0cf390f78026f8a670aaab53424cd31510633051 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/107923 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 654f2648ac78..fd21827211bb 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -1492,7 +1492,7 @@ void DomainMapperTableHandler::endTable(unsigned int nestedTableLevel, bool bTab
// before merge.
table::BorderLine2 aBorderValues[4];
for (size_t i = 0; i < aBorderNames.size(); ++i)
- xFirstCell->getPropertyValue(aBorderNames[i])
+ xFirstCell->getPropertyValue(OUString(aBorderNames[i]))
>>= aBorderValues[i];
uno::Reference<beans::XPropertySet> xLastCell(
@@ -1513,7 +1513,7 @@ void DomainMapperTableHandler::endTable(unsigned int nestedTableLevel, bool bTab
{
if (aBorderValues[i].LineStyle != table::BorderLineStyle::NONE)
xFirstCell->setPropertyValue(
- aBorderNames[i], uno::makeAny(aBorderValues[i]));
+ OUString(aBorderNames[i]), uno::makeAny(aBorderValues[i]));
}
}
}