From ab7b10d6c37af426c782e8cb46563bc206e5881c Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Fri, 27 Oct 2017 19:01:52 +0200 Subject: Fix build of Windows-only code, tdf#81671 follow-up Change-Id: I68a468857c529e8cab80d4453832dc9f4b3657d8 --- basic/source/sbx/sbxdec.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 != ',' ) { -- cgit