Tag: cws_src680_cmcfixes2
User: cmc     
Date: 05/02/11 07:28:50

Modified:
 /dba/connectivity/source/drivers/adabas/
  BDriver.cxx
 /dba/connectivity/source/drivers/dbase/
  DDriver.cxx
 /dba/connectivity/source/drivers/file/
  FDriver.cxx
 /dba/connectivity/source/drivers/flat/
  EDriver.cxx
 /dba/connectivity/source/drivers/hsqldb/
  HDriver.cxx
 /dba/connectivity/source/drivers/jdbc/
  JDriver.cxx
 /dba/connectivity/source/drivers/mozab/
  MDriver.cxx
 /dba/connectivity/source/drivers/mysql/
  YDriver.cxx
 /dba/connectivity/source/drivers/odbc/
  ODriver.cxx

Log:
 #i42421# iterators are not pointers

File Changes:

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.56.1
Delta lines:  +1 -1
-------------------
--- BDriver.cxx 2 Aug 2004 16:55:39 -0000       1.17
+++ BDriver.cxx 11 Feb 2005 15:28:42 -0000      1.17.56.1
@@ -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);

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.56.1
Delta lines:  +1 -1
-------------------
--- DDriver.cxx 2 Aug 2004 16:59:35 -0000       1.6
+++ DDriver.cxx 11 Feb 2005 15:28:43 -0000      1.6.56.1
@@ -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/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.56.1
Delta lines:  +1 -1
-------------------
--- FDriver.cxx 2 Aug 2004 17:02:28 -0000       1.9
+++ FDriver.cxx 11 Feb 2005 15:28:43 -0000      1.9.56.1
@@ -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/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.56.1
Delta lines:  +1 -1
-------------------
--- EDriver.cxx 2 Aug 2004 17:04:22 -0000       1.5
+++ EDriver.cxx 11 Feb 2005 15:28:44 -0000      1.5.56.1
@@ -179,7 +179,7 @@
                                
,::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/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.14.1
Delta lines:  +1 -1
-------------------
--- HDriver.cxx 21 Jan 2005 16:39:43 -0000      1.3
+++ HDriver.cxx 11 Feb 2005 15:28:45 -0000      1.3.14.1
@@ -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/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.56.1
Delta lines:  +1 -1
-------------------
--- JDriver.cxx 2 Aug 2004 17:05:00 -0000       1.30
+++ JDriver.cxx 11 Feb 2005 15:28:45 -0000      1.30.56.1
@@ -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/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.56.1
Delta lines:  +1 -1
-------------------
--- MDriver.cxx 2 Aug 2004 17:06:24 -0000       1.10
+++ MDriver.cxx 11 Feb 2005 15:28:46 -0000      1.10.56.1
@@ -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/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.48.1
Delta lines:  +1 -1
-------------------
--- YDriver.cxx 8 Sep 2004 16:21:50 -0000       1.10
+++ YDriver.cxx 11 Feb 2005 15:28:46 -0000      1.10.48.1
@@ -351,7 +351,7 @@
                                                );
                        }
                }
-               return Sequence< DriverPropertyInfo 
>(aDriverInfo.begin(),aDriverInfo.size()); 
+               return Sequence< DriverPropertyInfo 
>(&(aDriverInfo[0]),aDriverInfo.size()); 
        }
 
        //--------------------------------------------------------------------

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.56.1
Delta lines:  +1 -1
-------------------
--- ODriver.cxx 2 Aug 2004 17:09:23 -0000       1.10
+++ ODriver.cxx 11 Feb 2005 15:28:47 -0000      1.10.56.1
@@ -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 >();




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to