diff options
author | Ocke Janssen <oj@openoffice.org> | 2001-07-20 11:21:43 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2001-07-20 11:21:43 +0000 |
commit | fb0682f7bbb55f798b50d041c4b6fa223f2a5867 (patch) | |
tree | 881f552705e6c5178b37fd90d6d4d281655ef5b6 /connectivity | |
parent | 760795c648f8c4d695170db7b25dfac808984f3d (diff) |
#89987# getTypes corrceted
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/dbase/DTable.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx index 7e3dcf77d2cc..598c1ac99240 100644 --- a/connectivity/source/drivers/dbase/DTable.cxx +++ b/connectivity/source/drivers/dbase/DTable.cxx @@ -2,9 +2,9 @@ * * $RCSfile: DTable.cxx,v $ * - * $Revision: 1.55 $ + * $Revision: 1.56 $ * - * last change: $Author: fs $ $Date: 2001-07-17 12:36:18 $ + * last change: $Author: oj $ $Date: 2001-07-20 12:21:43 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -557,7 +557,7 @@ void SAL_CALL ODbaseTable::disposing(void) Sequence< Type > SAL_CALL ODbaseTable::getTypes( ) throw(RuntimeException) { Sequence< Type > aTypes = OTable_TYPEDEF::getTypes(); - Sequence< Type > aRet(aTypes.getLength()-1); + Sequence< Type > aRet(aTypes.getLength()); const Type* pBegin = aTypes.getConstArray(); const Type* pEnd = pBegin + aTypes.getLength(); sal_Int32 i=0; |