diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2018-12-17 21:29:56 +0100 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2019-01-02 07:45:41 +0100 |
commit | 9cd9b6b3372d12c499797b7fac8369d8d9b6f204 (patch) | |
tree | 0ef98fe141c749f141953b0aef39cee14b65d4e9 /connectivity | |
parent | be8897d9c63a77b223a9c0aed1d2eb689e0e0082 (diff) |
Fix typo
Change-Id: Ib3eaaae5fa5a1235e154cb17b5e202d7764d9c45
Reviewed-on: https://gerrit.libreoffice.org/65801
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/dbase/DTable.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx index b24603d7b79d..d5e1a1b46c41 100644 --- a/connectivity/source/drivers/dbase/DTable.cxx +++ b/connectivity/source/drivers/dbase/DTable.cxx @@ -346,10 +346,10 @@ void ODbaseTable::fillColumns() aTypeName = "NUMERIC"; eType = DataType::DECIMAL; - // for numeric fields two characters more are written, than the precision of the column description predescribes, + // for numeric fields two characters more are written, then the precision of the column description predescribes, // to keep room for the possible sign and the comma. This has to be considered... nPrecision = SvDbaseConverter::ConvertPrecisionToOdbc(nPrecision,aDBFColumn.db_dez); - // This is not true for older versions .... + // This is not true for older versions... break; case 'L': eType = DataType::BIT; |