Kaydet (Commit) ae531b69 authored tarafından Eike Rathke's avatar Eike Rathke

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

Change-Id: I9c056a137ab873f677e374d75c4e2f06bf370f21
üst ab7b10d6
......@@ -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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment