diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 11:54:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-18 14:18:55 +0100 |
commit | f0106e19303a3806a375833e2100538506ccbc0a (patch) | |
tree | 2f63b5e1de568d1c568be0575c193ec0ea804947 /chart2/source/inc | |
parent | 97d736d27435fb26d5609000f77bd79ece08572e (diff) |
sal_Char->char in canvas..codemaker
Change-Id: Iaf46b42a17bc00da0f86daeafea7b5346c4a6360
Reviewed-on: https://gerrit.libreoffice.org/85372
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/source/inc')
-rw-r--r-- | chart2/source/inc/CommonFunctors.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chart2/source/inc/CommonFunctors.hxx b/chart2/source/inc/CommonFunctors.hxx index e8818c67c972..d9daef13d574 100644 --- a/chart2/source/inc/CommonFunctors.hxx +++ b/chart2/source/inc/CommonFunctors.hxx @@ -75,7 +75,7 @@ struct OOO_DLLPUBLIC_CHARTTOOLS AnyToString * pDouble, rtl_math_StringFormat_Automatic, rtl_math_DecimalPlaces_Max, // use maximum decimal places available - sal_Char( '.' ), // decimal separator + '.', // decimal separator true // remove trailing zeros ); } @@ -118,7 +118,7 @@ struct OOO_DLLPUBLIC_CHARTTOOLS DoubleToOUString fNumber, rtl_math_StringFormat_Automatic, rtl_math_DecimalPlaces_Max, // use maximum decimal places available - static_cast< sal_Char >( '.' ), + '.', true ); } |