[Libreoffice-commits] core.git: basic/source
Caolán McNamara
caolanm at redhat.com
Wed Jul 20 15:55:25 UTC 2016
basic/source/sbx/sbxscan.cxx | 7 +++++++
1 file changed, 7 insertions(+)
New commits:
commit 2aed0d49d7891b9360916b65771222810aeeac96
Author: Caolán McNamara <caolanm at redhat.com>
Date: Wed Jul 20 16:30:16 2016 +0100
Resolves: tdf#98778 fix parsing of exponents
regression from...
commit 9e9f39d171cafa035d7b8e74187e25c3581cb89d
Date: Tue Mar 19 23:23:16 2013 +0100
resolved rhbz#919020 Basic CDbl() and CSng() scan localized number
Change-Id: I96535fd9bc9ec59d6e07739a3118c96eb2d8bd05
Reviewed-on: https://gerrit.libreoffice.org/27342
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Eike Rathke <erack at redhat.com>
diff --git a/basic/source/sbx/sbxscan.cxx b/basic/source/sbx/sbxscan.cxx
index bf68189..05a4eae 100644
--- a/basic/source/sbx/sbxscan.cxx
+++ b/basic/source/sbx/sbxscan.cxx
@@ -160,6 +160,13 @@ SbxError ImpScan( const OUString& rWSrc, double& nVal, SbxDataType& rType,
eScanType = SbxDOUBLE;
aBuf[ p - pStart ] = 'E';
p++;
+ if (*p == '+')
+ ++p;
+ else if (*p == '-')
+ {
+ aBuf.append('-');
+ ++p;
+ }
}
else
{
More information about the Libreoffice-commits
mailing list