From ab285c743afa1c8769581871d7b56374fd8c49f1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 2 Nov 2019 18:59:49 +0200 Subject: loplugin:stringadd tweak the plugin to be more permissive, then validate by hand afterwards Change-Id: I40c5c911fe6ff7e45baaca372abf7dac211d9654 Reviewed-on: https://gerrit.libreoffice.org/81942 Tested-by: Jenkins Reviewed-by: Noel Grandin --- editeng/source/items/borderline.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'editeng') diff --git a/editeng/source/items/borderline.cxx b/editeng/source/items/borderline.cxx index 00fff9797f28..3be1c2d46869 100644 --- a/editeng/source/items/borderline.cxx +++ b/editeng/source/items/borderline.cxx @@ -655,12 +655,12 @@ OUString SvxBorderLine::GetValueString(MapUnit eSrcUnit, aStr += GetMetricText( static_cast(GetInWidth()), eSrcUnit, eDestUnit, pIntl ); if ( bMetricStr ) aStr += sMetric; - aStr += cpDelim; - aStr += GetMetricText( static_cast(GetOutWidth()), eSrcUnit, eDestUnit, pIntl ); + aStr += cpDelim + + GetMetricText( static_cast(GetOutWidth()), eSrcUnit, eDestUnit, pIntl ); if ( bMetricStr ) aStr += sMetric; - aStr += cpDelim; - aStr += GetMetricText( static_cast(GetDistance()), eSrcUnit, eDestUnit, pIntl ); + aStr += cpDelim + + GetMetricText( static_cast(GetDistance()), eSrcUnit, eDestUnit, pIntl ); if ( bMetricStr ) aStr += sMetric; } -- cgit v1.2.3