summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hwpreader.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/hwpreader.cxx')
-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);
}