summaryrefslogtreecommitdiff
path: root/chart2
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-06-16 10:08:47 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2017-06-21 19:20:35 +0200
commitcc5703885ad52526e484d8172e08406b2925faf6 (patch)
tree31427a5eeb150e04da17f2fc451a711e0a33e588 /chart2
parent65afee1494ac1f71b39e4b3dc1ced52c5f21de54 (diff)
only some languages put a space between number and %
Change-Id: Ifdd2f2c02738fc9e9b3fd4cbf97b211b29856df1 Reviewed-on: https://gerrit.libreoffice.org/38870 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> (cherry picked from commit e89e3ca2a6ab1773a7221eac11cb60812c002005) Reviewed-on: https://gerrit.libreoffice.org/39020 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'chart2')
-rw-r--r--chart2/source/controller/dialogs/res_ErrorBar.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/dialogs/res_ErrorBar.cxx b/chart2/source/controller/dialogs/res_ErrorBar.cxx
index 03e24cc512ce..998d57862f3c 100644
--- a/chart2/source/controller/dialogs/res_ErrorBar.cxx
+++ b/chart2/source/controller/dialogs/res_ErrorBar.cxx
@@ -258,11 +258,11 @@ void ErrorBarResources::UpdateControlStates()
( m_pRbFunction->IsChecked()) &&
( m_pLbFunction->GetSelectEntryPos() == CHART_LB_FUNCTION_ERROR_MARGIN ));
bool bIsPercentage( m_pRbPercent->IsChecked() || bIsErrorMargin );
- OUString aCustomUnit;
+ FieldUnit eFieldUnit = FUNIT_NONE;
if( bIsPercentage )
{
- aCustomUnit = " %";
+ eFieldUnit = FUNIT_PERCENT;
m_pMfPositive->SetDecimalDigits( 1 );
m_pMfPositive->SetSpinSize( 10 );
m_pMfNegative->SetDecimalDigits( 1 );
@@ -282,8 +282,8 @@ void ErrorBarResources::UpdateControlStates()
m_pMfPositive->SetValue( nPlusValue );
m_pMfNegative->SetValue( nMinusValue );
- m_pMfPositive->SetCustomUnitText( aCustomUnit );
- m_pMfNegative->SetCustomUnitText( aCustomUnit );
+ m_pMfPositive->SetUnit(eFieldUnit);
+ m_pMfNegative->SetUnit(eFieldUnit);
// positive and negative value fields
bool bPosEnabled = ( m_pRbPositive->IsChecked() || m_pRbBoth->IsChecked());