summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-10-27 19:01:52 +0200
committerEike Rathke <erack@redhat.com>2017-10-27 19:01:59 +0200
commitab7b10d6c37af426c782e8cb46563bc206e5881c (patch)
treee728862027dc18a8dc880e5dbc1a9c3755ba88d8 /basic
parent89e0a9183e7b21596bcd5504b104bf816f1d3ef3 (diff)
Fix build of Windows-only code, tdf#81671 follow-up
Change-Id: I68a468857c529e8cab80d4453832dc9f4b3657d8
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxdec.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxdec.cxx b/basic/source/sbx/sbxdec.cxx
index 8356d36cab77..7896811dec25 100644
--- a/basic/source/sbx/sbxdec.cxx
+++ b/basic/source/sbx/sbxdec.cxx
@@ -354,7 +354,8 @@ void SbxDecimal::getString( OUString& rString )
// Convert delimiter
sal_Unicode cDecimalSep;
sal_Unicode cThousandSep;
- ImpGetIntntlSep( cDecimalSep, cThousandSep );
+ sal_Unicode cDecimalSepAlt;
+ ImpGetIntntlSep( cDecimalSep, cThousandSep, cDecimalSepAlt );
if( cDecimalSep != '.' || cThousandSep != ',' )
{