From 0cea884e3f417e4b58d2fdcfc7b0111f3bfc6f30 Mon Sep 17 00:00:00 2001 From: Tsutomu Uchino Date: Sat, 18 Jan 2014 08:14:47 +0000 Subject: #i56998# add a space separater between value and unit and remove separator between value and percent to match with ISO 31-0 --- sc/source/core/data/docpool.cxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sc') diff --git a/sc/source/core/data/docpool.cxx b/sc/source/core/data/docpool.cxx index be806260f43f..90c5766cd407 100644 --- a/sc/source/core/data/docpool.cxx +++ b/sc/source/core/data/docpool.cxx @@ -734,6 +734,7 @@ SfxItemPresentation lcl_HFPresentation { aText += GetMetricText( (long)nLeftMargin, eCoreMetric, ePresentationMetric, pIntl ); + aText += sal_Unicode(' '); aText += EE_RESSTR(GetMetricId(ePresentationMetric)); } aText += cpDelim; @@ -750,6 +751,7 @@ SfxItemPresentation lcl_HFPresentation { aText += GetMetricText( (long)nRightMargin, eCoreMetric, ePresentationMetric, pIntl ); + aText += sal_Unicode(' '); aText += EE_RESSTR(GetMetricId(ePresentationMetric)); } } -- cgit