summaryrefslogtreecommitdiff
path: root/hwpfilter/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-09-30 15:10:42 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-10-01 08:26:49 +0200
commit03516c505eced337149782a67b2ad98c246929b3 (patch)
treec499c7912cf65ebbf13c729782a93adc3f856a55 /hwpfilter/source
parent9b3643820bf821c8be728ed20a8cb7ed05cabef2 (diff)
loplugin:stringadd in helpcompiler..oox
Change-Id: I858870d883de10a673d7ce2798bda8c8f511cee5 Reviewed-on: https://gerrit.libreoffice.org/79889 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'hwpfilter/source')
-rw-r--r--hwpfilter/source/hwpreader.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/hwpfilter/source/hwpreader.cxx b/hwpfilter/source/hwpreader.cxx
index b7978a201936..4144d20e0bde 100644
--- a/hwpfilter/source/hwpreader.cxx
+++ b/hwpfilter/source/hwpreader.cxx
@@ -2656,11 +2656,11 @@ void HwpReader::makeFStyle(FBoxStyle * fstyle)
else if( fstyle->boxtype == 'G' )
{
if( fstyle->margin[1][0] || fstyle->margin[1][1] || fstyle->margin[1][2] || fstyle->margin[1][3] ){
- OUString clip = "rect(";
- clip += Double2Str(WTMM(-fstyle->margin[1][0]) ) + "mm ";
- clip += Double2Str(WTMM(-fstyle->margin[1][1]) ) + "mm ";
- clip += Double2Str(WTMM(-fstyle->margin[1][2]) ) + "mm ";
- clip += Double2Str(WTMM(-fstyle->margin[1][3]) ) + "mm)";
+ OUString clip = "rect(" +
+ Double2Str(WTMM(-fstyle->margin[1][0]) ) + "mm " +
+ Double2Str(WTMM(-fstyle->margin[1][1]) ) + "mm " +
+ Double2Str(WTMM(-fstyle->margin[1][2]) ) + "mm " +
+ Double2Str(WTMM(-fstyle->margin[1][3]) ) + "mm)";
padd("style:mirror", sXML_CDATA, "none");
padd("fo:clip", sXML_CDATA, clip);
}