Tag: cws_src680_dba24 User: oj Date: 05/02/04 00:43:42 Modified: /dba/connectivity/source/drivers/odbc/ ODriver.cxx /dba/connectivity/source/drivers/mysql/ YDriver.cxx /dba/connectivity/source/drivers/mozab/ MDriver.cxx /dba/connectivity/source/drivers/jdbc/ JDriver.cxx /dba/connectivity/source/drivers/hsqldb/ HDriver.cxx /dba/connectivity/source/drivers/flat/ EDriver.cxx /dba/connectivity/source/drivers/file/ FDriver.cxx /dba/connectivity/source/drivers/dbase/ DDriver.cxx /dba/connectivity/source/drivers/adabas/ BDriver.cxx
Log: STLPort fix from thb File Changes: Directory: /dba/connectivity/source/drivers/odbc/ ================================================= File [changed]: ODriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/odbc/ODriver.cxx?r1=1.10&r2=1.10.52.1 Delta lines: +4 -4 ------------------- --- ODriver.cxx 2 Aug 2004 17:09:23 -0000 1.10 +++ ODriver.cxx 4 Feb 2005 08:43:35 -0000 1.10.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: ODriver.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.10.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:09:23 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -231,7 +231,7 @@ ,::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 >(); Directory: /dba/connectivity/source/drivers/mysql/ ================================================== File [changed]: YDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/mysql/YDriver.cxx?r1=1.10&r2=1.10.44.1 Delta lines: +4 -4 ------------------- --- YDriver.cxx 8 Sep 2004 16:21:50 -0000 1.10 +++ YDriver.cxx 4 Feb 2005 08:43:35 -0000 1.10.44.1 @@ -2,9 +2,9 @@ * * $RCSfile: YDriver.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.10.44.1 $ * - * last change: $Author: rt $ $Date: 2004/09/08 16:21:50 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -351,7 +351,7 @@ ); } } - return Sequence< DriverPropertyInfo >(aDriverInfo.begin(),aDriverInfo.size()); + return Sequence< DriverPropertyInfo >(&aDriverInfo[0],aDriverInfo.size()); } //-------------------------------------------------------------------- Directory: /dba/connectivity/source/drivers/mozab/ ================================================== File [changed]: MDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/mozab/MDriver.cxx?r1=1.10&r2=1.10.52.1 Delta lines: +4 -4 ------------------- --- MDriver.cxx 2 Aug 2004 17:06:24 -0000 1.10 +++ MDriver.cxx 4 Feb 2005 08:43:36 -0000 1.10.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: MDriver.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.10.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:06:24 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -218,7 +218,7 @@ ,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); // if you have somthing special to say return it here :-) Directory: /dba/connectivity/source/drivers/jdbc/ ================================================= File [changed]: JDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/jdbc/JDriver.cxx?r1=1.30&r2=1.30.52.1 Delta lines: +4 -4 ------------------- --- JDriver.cxx 2 Aug 2004 17:05:00 -0000 1.30 +++ JDriver.cxx 4 Feb 2005 08:43:36 -0000 1.30.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: JDriver.cxx,v $ * - * $Revision: 1.30 $ + * $Revision: 1.30.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:05:00 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:36 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -213,7 +213,7 @@ ,::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 >(); Directory: /dba/connectivity/source/drivers/hsqldb/ =================================================== File [changed]: HDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/hsqldb/HDriver.cxx?r1=1.3&r2=1.3.10.1 Delta lines: +4 -4 ------------------- --- HDriver.cxx 21 Jan 2005 16:39:43 -0000 1.3 +++ HDriver.cxx 4 Feb 2005 08:43:37 -0000 1.3.10.1 @@ -2,9 +2,9 @@ * * $RCSfile: HDriver.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.3.10.1 $ * - * last change: $Author: kz $ $Date: 2005/01/21 16:39:43 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -319,7 +319,7 @@ ,Sequence< ::rtl::OUString >()) ); } - return Sequence< DriverPropertyInfo >(aDriverInfo.begin(),aDriverInfo.size()); + return Sequence< DriverPropertyInfo >(&aDriverInfo[0],aDriverInfo.size()); } //-------------------------------------------------------------------- Directory: /dba/connectivity/source/drivers/flat/ ================================================= File [changed]: EDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/flat/EDriver.cxx?r1=1.5&r2=1.5.52.1 Delta lines: +5 -4 ------------------- --- EDriver.cxx 2 Aug 2004 17:04:22 -0000 1.5 +++ EDriver.cxx 4 Feb 2005 08:43:37 -0000 1.5.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: EDriver.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.5.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:04:22 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -179,7 +179,8 @@ ,::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("0")) ,aBoolean) ); - return ::comphelper::concatSequences(OFileDriver::getPropertyInfo(url,info ),Sequence< DriverPropertyInfo >(aDriverInfo.begin(),aDriverInfo.size())); + return ::comphelper::concatSequences(OFileDriver::getPropertyInfo(url,info ), + Sequence< DriverPropertyInfo >(&aDriverInfo[0],aDriverInfo.size())); } ::dbtools::throwGenericSQLException(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("Invalid URL!")) ,*this); return Sequence< DriverPropertyInfo >(); Directory: /dba/connectivity/source/drivers/file/ ================================================= File [changed]: FDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/file/FDriver.cxx?r1=1.9&r2=1.9.52.1 Delta lines: +4 -4 ------------------- --- FDriver.cxx 2 Aug 2004 17:02:28 -0000 1.9 +++ FDriver.cxx 4 Feb 2005 08:43:38 -0000 1.9.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: FDriver.cxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.9.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 17:02:28 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -205,7 +205,7 @@ ,::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); return Sequence< DriverPropertyInfo >(); Directory: /dba/connectivity/source/drivers/dbase/ ================================================== File [changed]: DDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/dbase/DDriver.cxx?r1=1.6&r2=1.6.52.1 Delta lines: +4 -4 ------------------- --- DDriver.cxx 2 Aug 2004 16:59:35 -0000 1.6 +++ DDriver.cxx 4 Feb 2005 08:43:39 -0000 1.6.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: DDriver.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.6.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 16:59:35 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -153,7 +153,7 @@ ,::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); Directory: /dba/connectivity/source/drivers/adabas/ =================================================== File [changed]: BDriver.cxx Url: http://dba.openoffice.org/source/browse/dba/connectivity/source/drivers/adabas/BDriver.cxx?r1=1.17&r2=1.17.52.1 Delta lines: +4 -4 ------------------- --- BDriver.cxx 2 Aug 2004 16:55:39 -0000 1.17 +++ BDriver.cxx 4 Feb 2005 08:43:39 -0000 1.17.52.1 @@ -2,9 +2,9 @@ * * $RCSfile: BDriver.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.17.52.1 $ * - * last change: $Author: hr $ $Date: 2004/08/02 16:55:39 $ + * last change: $Author: oj $ $Date: 2005/02/04 08:43:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -263,7 +263,7 @@ ,::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); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
