diff options
author | Tsutomu Uchino <hanya@apache.org> | 2014-01-18 08:14:47 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-20 12:08:54 +0000 |
commit | ab50bc9d4a72193c1fefcbf0652938995094bc41 (patch) | |
tree | 5c9f9b107edd1e59cb88606e8a7152d68adf0832 /sc | |
parent | d98d35b3293b3b4b27db4d578348f43a86201cfc (diff) |
Resolves: #i56998# add a space separater between value and unit...
and remove separator between value and percent to match with ISO 31-0
(cherry picked from commit 0cea884e3f417e4b58d2fdcfc7b0111f3bfc6f30)
Conflicts:
chart2/source/controller/dialogs/tp_SeriesToAxis.src
cui/source/dialogs/colorpicker.cxx
cui/source/dialogs/colorpicker.src
cui/source/dialogs/grfflt.src
cui/source/dialogs/zoom.src
cui/source/tabpages/tabline.src
editeng/source/items/frmitems.cxx
editeng/source/items/textitem.cxx
sd/source/ui/animations/CustomAnimationDialog.src
sd/source/ui/animations/SlideTransitionPane.src
svx/source/dialog/bmpmask.src
svx/source/engine3d/float3d.src
svx/source/items/algitem.cxx
svx/source/sidebar/text/TextCharacterSpacingControl.cxx
svx/source/xoutdev/xattr.cxx
sw/source/ui/utlui/attrdesc.cxx
sw/source/ui/utlui/uiitems.cxx
Change-Id: I554309cb72dd8956077c5ca6866a982cdd6529aa
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/docpool.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/core/data/docpool.cxx b/sc/source/core/data/docpool.cxx index 1f8b87241928..098790ccca40 100644 --- a/sc/source/core/data/docpool.cxx +++ b/sc/source/core/data/docpool.cxx @@ -749,7 +749,7 @@ static SfxItemPresentation lcl_HFPresentation { aText += GetMetricText( (long)nLeftMargin, eCoreMetric, ePresentationMetric, pIntl ); - aText += EE_RESSTR(GetMetricId(ePresentationMetric)); + aText += " " + EE_RESSTR(GetMetricId(ePresentationMetric)); } aText += cpDelim; @@ -764,7 +764,7 @@ static SfxItemPresentation lcl_HFPresentation { aText += GetMetricText( (long)nRightMargin, eCoreMetric, ePresentationMetric, pIntl ); - aText += EE_RESSTR(GetMetricId(ePresentationMetric)); + aText += " " + EE_RESSTR(GetMetricId(ePresentationMetric)); } } break; |