summaryrefslogtreecommitdiff
path: root/sc/source/core/tool/interpr2.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 12:27:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-22 15:49:36 +0100
commit6873e0a969948a96679f667400da4eaa4ef2cc07 (patch)
tree0ab7f225de65c7a3729d53b46c263404d35a3098 /sc/source/core/tool/interpr2.cxx
parent494e6a082c0186d7e54bc718439f79ed29471614 (diff)
sal_Char->char in sc
Change-Id: I7e212a36898e71b03db88053647bfeee12a49cb5 Reviewed-on: https://gerrit.libreoffice.org/85690 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/core/tool/interpr2.cxx')
-rw-r--r--sc/source/core/tool/interpr2.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 2dc9010e8eed..37b25cc2215a 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -3282,9 +3282,9 @@ static bool lclConvertMoney( const OUString& aSearchUnit, double& rfRate, int& r
{
struct ConvertInfo
{
- const sal_Char* pCurrText;
- double fRate;
- int nDec;
+ const char* pCurrText;
+ double fRate;
+ int nDec;
};
static const ConvertInfo aConvertTable[] = {
{ "EUR", 1.0, 2 },