INTEGRATION: CWS cmcfixes2 (1.30.56); FILE MERGED

2005/02/11 15:28:45 cmc 1.30.56.1: #i42421# iterators are not pointers
This commit is contained in:
Vladimir Glazounov 2005-02-24 13:39:39 +00:00
parent 77c86e4a3a
commit 0b2a988a95

View file

@ -2,9 +2,9 @@
*
* $RCSfile: JDriver.cxx,v $
*
* $Revision: 1.31 $
* $Revision: 1.32 $
*
* last change: $Author: vg $ $Date: 2005-02-17 10:15:29 $
* last change: $Author: vg $ $Date: 2005-02-24 14:39:39 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -58,7 +58,6 @@
*
*
************************************************************************/
#ifndef _CONNECTIVITY_JAVA_SQL_DRIVER_HXX_
#include "java/sql/Driver.hxx"
#endif
@ -219,7 +218,7 @@ Sequence< DriverPropertyInfo > SAL_CALL java_sql_Driver::getPropertyInfo( const
,::rtl::OUString()
,Sequence< ::rtl::OUString >())
);
return Sequence< DriverPropertyInfo >(aDriverInfo.begin(),aDriverInfo.size());
return Sequence< DriverPropertyInfo >(&(aDriverInfo[0]),aDriverInfo.size());
}
::dbtools::throwGenericSQLException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Invalid URL!")) ,*this);
return Sequence< DriverPropertyInfo >();