Tag: cws_src680_hsqlcsv User: fs Date: 2006/09/18 01:51:10 Modified: dba/dbaccess/source/core/dataaccess/connection.hxx dba/dbaccess/source/core/dataaccess/connection.cxx
Log: removed ColorMode parameter File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: connection.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/connection.hxx?r1=1.24.46.1&r2=1.24.46.2 Delta lines: +3 -3 ------------------- --- connection.hxx 14 Sep 2006 12:22:37 -0000 1.24.46.1 +++ connection.hxx 18 Sep 2006 08:51:07 -0000 1.24.46.2 @@ -4,9 +4,9 @@ * * $RCSfile: connection.hxx,v $ * - * $Revision: 1.24.46.1 $ + * $Revision: 1.24.46.2 $ * - * last change: $Author: fs $ $Date: 2006/09/14 12:22:37 $ + * last change: $Author: fs $ $Date: 2006/09/18 08:51:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -249,7 +249,7 @@ virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XDataSourceMetaData > SAL_CALL getDataSourceMetaData( ) throw (::com::sun::star::uno::RuntimeException); // XTableUIProvider - virtual ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > SAL_CALL getTableIcon( const ::rtl::OUString& TableName, ::sal_Int16 ColorMode ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > SAL_CALL getTableIcon( const ::rtl::OUString& TableName ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getTableEditor( const ::rtl::OUString& TableName ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); // IRefreshListener File [changed]: connection.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/connection.cxx?r1=1.48.18.1&r2=1.48.18.2 Delta lines: +4 -4 ------------------- --- connection.cxx 14 Sep 2006 12:22:37 -0000 1.48.18.1 +++ connection.cxx 18 Sep 2006 08:51:07 -0000 1.48.18.2 @@ -4,9 +4,9 @@ * * $RCSfile: connection.cxx,v $ * - * $Revision: 1.48.18.1 $ + * $Revision: 1.48.18.2 $ * - * last change: $Author: fs $ $Date: 2006/09/14 12:22:37 $ + * last change: $Author: fs $ $Date: 2006/09/18 08:51:07 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -852,13 +852,13 @@ } // ----------------------------------------------------------------------------- -Reference< XGraphic > SAL_CALL OConnection::getTableIcon( const ::rtl::OUString& _TableName, ::sal_Int16 _ColorMode ) throw (RuntimeException) +Reference< XGraphic > SAL_CALL OConnection::getTableIcon( const ::rtl::OUString& _TableName ) throw (RuntimeException) { Reference< XGraphic > xReturn; // ask our aggregate if ( m_xTableUIProvider.is() ) - xReturn = m_xTableUIProvider->getTableIcon( _TableName, _ColorMode ); + xReturn = m_xTableUIProvider->getTableIcon( _TableName ); // ask ourself // well, we don't have own functionality here ... --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
