User: hr Date: 06/06/19 18:53:08 Modified: /dba/connectivity/source/drivers/mysql/ YDriver.cxx
Log: 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 File Changes: 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.15&r2=1.16 Delta lines: +4 -8 ------------------- --- YDriver.cxx 29 Mar 2006 12:20:00 -0000 1.15 +++ YDriver.cxx 20 Jun 2006 01:53:06 -0000 1.16 @@ -139,7 +139,7 @@ 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 @@ 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 @@ 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 @@ } //-------------------------------------------------------------------- - 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) ) @@ -422,10 +422,6 @@ Sequence< ::rtl::OUString > SAL_CALL ODriverDelegator::getSupportedServiceNames( ) throw(RuntimeException) { return getSupportedServiceNames_Static(); - } - //------------------------------------------------------------------ - void SAL_CALL ODriverDelegator::createCatalog( const Sequence< PropertyValue >& info ) throw (SQLException, ::com::sun::star::container::ElementExistException, RuntimeException) - { } //------------------------------------------------------------------ //........................................................................ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
