summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/mysql
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 00:53:06 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-20 00:53:06 +0000
commite5f41053dcfc4444e401d6e32d34dd0a95d1dca8 (patch)
tree3e3189dd3bb7ec99c93a2ee7fec67fc9d2d25618 /connectivity/source/drivers/mysql
parente8fbb4ffbdb17968cc632abc8148182ad269efdb (diff)
INTEGRATION: CWS warnings01 (1.13.28); FILE MERGED
2006/04/07 20:24:19 sb 1.13.28.2: RESYNC: (1.13-1.15); FILE MERGED 2005/11/16 12:59:17 fs 1.13.28.1: #i57457# warning free code
Diffstat (limited to 'connectivity/source/drivers/mysql')
-rw-r--r--connectivity/source/drivers/mysql/YDriver.cxx16
1 files changed, 6 insertions, 10 deletions
diff --git a/connectivity/source/drivers/mysql/YDriver.cxx b/connectivity/source/drivers/mysql/YDriver.cxx
index b25a565417e8..88506875f89a 100644
--- a/connectivity/source/drivers/mysql/YDriver.cxx
+++ b/connectivity/source/drivers/mysql/YDriver.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: YDriver.cxx,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: obo $ $Date: 2006-03-29 12:20:00 $
+ * last change: $Author: hr $ $Date: 2006-06-20 01:53:06 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -139,7 +139,7 @@ namespace connectivity
return sRet;
}
//--------------------------------------------------------------------
- ::rtl::OUString transformUrl(const ::rtl::OUString& _sUrl,const Sequence< PropertyValue >& info)
+ ::rtl::OUString transformUrl(const ::rtl::OUString& _sUrl)
{
::rtl::OUString sNewUrl = _sUrl.copy(11);
if ( isOdbcUrl( _sUrl ) )
@@ -222,7 +222,7 @@ namespace connectivity
Reference< XDriver > ODriverDelegator::loadDriver( const ::rtl::OUString& url, const Sequence< PropertyValue >& info )
{
Reference< XDriver > xDriver;
- ::rtl::OUString sCuttedUrl = transformUrl(url,info);
+ ::rtl::OUString sCuttedUrl = transformUrl(url);
sal_Bool bIsODBC = isOdbcUrl( url );
if ( bIsODBC )
{
@@ -254,7 +254,7 @@ namespace connectivity
xDriver = loadDriver(url,info);
if ( xDriver.is() )
{
- ::rtl::OUString sCuttedUrl = transformUrl(url,info);
+ ::rtl::OUString sCuttedUrl = transformUrl(url);
sal_Bool bIsODBC = isOdbcUrl( url );
Sequence< PropertyValue > aConvertedProperties = lcl_convertProperties(bIsODBC,info);
@@ -292,7 +292,7 @@ namespace connectivity
}
//--------------------------------------------------------------------
- Sequence< DriverPropertyInfo > SAL_CALL ODriverDelegator::getPropertyInfo( const ::rtl::OUString& url, const Sequence< PropertyValue >& info ) throw (SQLException, RuntimeException)
+ Sequence< DriverPropertyInfo > SAL_CALL ODriverDelegator::getPropertyInfo( const ::rtl::OUString& url, const Sequence< PropertyValue >& /*info*/ ) throw (SQLException, RuntimeException)
{
::std::vector< DriverPropertyInfo > aDriverInfo;
if ( !acceptsURL(url) )
@@ -424,10 +424,6 @@ namespace connectivity
return getSupportedServiceNames_Static();
}
//------------------------------------------------------------------
- void SAL_CALL ODriverDelegator::createCatalog( const Sequence< PropertyValue >& info ) throw (SQLException, ::com::sun::star::container::ElementExistException, RuntimeException)
- {
- }
- //------------------------------------------------------------------
//........................................................................
} // namespace connectivity
//........................................................................