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 ...@@ -33,7 +33,7 @@ extern ErrCode ImpScan
// with advanced evaluation (International, "TRUE"/"FALSE") // with advanced evaluation (International, "TRUE"/"FALSE")
extern bool ImpConvStringExt( OUString& rSrc, SbxDataType eTargetType ); 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 // SBXINT.CXX
......
...@@ -203,7 +203,8 @@ bool SbxDecimal::setString( OUString* pOUString ) ...@@ -203,7 +203,8 @@ bool SbxDecimal::setString( OUString* pOUString )
// Convert delimiter // Convert delimiter
sal_Unicode cDecimalSep; sal_Unicode cDecimalSep;
sal_Unicode cThousandSep; sal_Unicode cThousandSep;
ImpGetIntntlSep( cDecimalSep, cThousandSep ); sal_Unicode cDecimalSepAlt;
ImpGetIntntlSep( cDecimalSep, cThousandSep, cDecimalSepAlt );
bool bRet = false; bool bRet = false;
HRESULT hResult; 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