diff options
author | Tsutomu Uchino <hanya@apache.org> | 2014-01-18 08:14:47 +0000 |
---|---|---|
committer | Tsutomu Uchino <hanya@apache.org> | 2014-01-18 08:14:47 +0000 |
commit | 0cea884e3f417e4b58d2fdcfc7b0111f3bfc6f30 (patch) | |
tree | 73f801e705ee4c80c915aa6568f16201972eb03d /sc | |
parent | 3e878f6ea157ec0aaa47c1f4dbaf039b9de1a103 (diff) |
#i56998# add a space separater between value and unit and remove separator between value and percent to match with ISO 31-0
Notes
Notes:
merged as: ab50bc9d4a72193c1fefcbf0652938995094bc41
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/docpool.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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)); } } |