Another ImpGetIntntlSep() fix, tdf#81671 follow-up

Change-Id: I9c056a137ab873f677e374d75c4e2f06bf370f21
This commit is contained in:
Eike Rathke
2017-10-27 19:07:59 +02:00
parent ab7b10d6c3
commit ae531b69b3
2 changed files with 3 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ extern ErrCode ImpScan
// with advanced evaluation (International, "TRUE"/"FALSE")
extern bool ImpConvStringExt( OUString& rSrc, SbxDataType eTargetType );
void ImpGetIntntlSep( sal_Unicode& rcDecimalSep, sal_Unicode& rcThousandSep );
void ImpGetIntntlSep( sal_Unicode& rcDecimalSep, sal_Unicode& rcThousandSep, sal_Unicode& rcDecimalSepAlt );
// SBXINT.CXX

View File

@@ -203,7 +203,8 @@ bool SbxDecimal::setString( OUString* pOUString )
// Convert delimiter
sal_Unicode cDecimalSep;
sal_Unicode cThousandSep;
ImpGetIntntlSep( cDecimalSep, cThousandSep );
sal_Unicode cDecimalSepAlt;
ImpGetIntntlSep( cDecimalSep, cThousandSep, cDecimalSepAlt );
bool bRet = false;
HRESULT hResult;