summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2005-02-24 13:38:43 +0000
committerVladimir Glazounov <vg@openoffice.org>2005-02-24 13:38:43 +0000
commitbcb1778ed99e17994916e2fc4181e4970c48e834 (patch)
tree3831e1ce62fca7ca7fe99f856e1e4274f8d314dd /connectivity
parentaae6e7f26271e4dda22dbd79b953a69b6f1fe69f (diff)
INTEGRATION: CWS cmcfixes2 (1.6.56); FILE MERGED
2005/02/11 15:28:43 cmc 1.6.56.1: #i42421# iterators are not pointers
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/DDriver.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/connectivity/source/drivers/dbase/DDriver.cxx b/connectivity/source/drivers/dbase/DDriver.cxx
index 138e929525ac..9ed779b30123 100644
--- a/connectivity/source/drivers/dbase/DDriver.cxx
+++ b/connectivity/source/drivers/dbase/DDriver.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: DDriver.cxx,v $
*
- * $Revision: 1.6 $
+ * $Revision: 1.7 $
*
- * last change: $Author: hr $ $Date: 2004-08-02 16:59:35 $
+ * last change: $Author: vg $ $Date: 2005-02-24 14:38:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -58,7 +58,6 @@
*
*
************************************************************************/
-
#ifndef _CONNECTIVITY_DBASE_DDRIVER_HXX_
#include "dbase/DDriver.hxx"
#endif
@@ -153,7 +152,7 @@ Sequence< DriverPropertyInfo > SAL_CALL ODriver::getPropertyInfo( const ::rtl::O
,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("0"))
,aBoolean)
);
- return Sequence< DriverPropertyInfo >(aDriverInfo.begin(),aDriverInfo.size());
+ return Sequence< DriverPropertyInfo >(&(aDriverInfo[0]),aDriverInfo.size());
}
::dbtools::throwGenericSQLException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Invalid URL!")) ,*this);