diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2024-12-23 09:31:28 +0100 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2024-12-23 11:21:56 +0100 |
commit | e40b541d7ae6acdcfda19e54a12a4dbc59bfbd09 (patch) | |
tree | e6c1be21666f29d1f8c51836d79da7dad40a6628 | |
parent | 78dbd341bb5023448af2c3eefceb5a840fd6d8d9 (diff) |
Fix a copypasta
From commit 9e9f39d171cafa035d7b8e74187e25c3581cb89d (resolved
rhbz#919020 Basic CDbl() and CSng() scan localized number, 2013-03-19)
Change-Id: I871d7fb06ccb5d15723f7acfb57701890607055f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/179197
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
-rw-r--r-- | basic/source/sbx/sbxscan.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx index dbb45c34b88e..729fce58aace 100644 --- a/basic/source/sbx/sbxscan.cxx +++ b/basic/source/sbx/sbxscan.cxx @@ -107,7 +107,7 @@ ErrCode ImpScan( const OUString& rWSrc, double& nVal, SbxDataType& rType, bMinus = true; } if( rtl::isAsciiDigit( *p ) || ((*p == cNonIntntlDecSep || *p == cIntntlDecSep || - (cIntntlDecSep && *p == cIntntlGrpSep) || (cIntntlDecSepAlt && *p == cIntntlDecSepAlt)) && + (cIntntlGrpSep && *p == cIntntlGrpSep) || (cIntntlDecSepAlt && *p == cIntntlDecSepAlt)) && rtl::isAsciiDigit( *(p+1) ))) { // tdf#118442: Whitespace and minus are skipped; store the position to calculate index |