Another ImpGetIntntlSep() fix, tdf#81671 follow-up
Change-Id: I9c056a137ab873f677e374d75c4e2f06bf370f21
This commit is contained in:
@@ -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 )
|
|||||||
// 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;
|
||||||
|
Reference in New Issue
Block a user