Tag: cws_src680_hsqlcsv User: fs Date: 2006/09/20 01:46:09 Modified: dba/dbaccess/source/core/dataaccess/connection.cxx dba/dbaccess/source/core/dataaccess/connection.hxx
Log: #i69526# ColorMode added to XTableUIProvider::getTableIcon File Changes: Directory: /dba/dbaccess/source/core/dataaccess/ ================================================ File [changed]: connection.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/connection.cxx?r1=1.48.18.3&r2=1.48.18.4 Delta lines: +4 -4 ------------------- --- connection.cxx 18 Sep 2006 14:14:56 -0000 1.48.18.3 +++ connection.cxx 20 Sep 2006 08:46:05 -0000 1.48.18.4 @@ -4,9 +4,9 @@ * * $RCSfile: connection.cxx,v $ * - * $Revision: 1.48.18.3 $ + * $Revision: 1.48.18.4 $ * - * last change: $Author: fs $ $Date: 2006/09/18 14:14:56 $ + * last change: $Author: fs $ $Date: 2006/09/20 08:46:05 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -853,13 +853,13 @@ } // ----------------------------------------------------------------------------- -Reference< XGraphic > SAL_CALL OConnection::getTableIcon( const ::rtl::OUString& _TableName ) throw (RuntimeException) +Reference< XGraphic > SAL_CALL OConnection::getTableIcon( const ::rtl::OUString& _TableName, ::sal_Int32 _ColorMode ) throw (RuntimeException) { Reference< XGraphic > xReturn; // ask our aggregate if ( m_xTableUIProvider.is() ) - xReturn = m_xTableUIProvider->getTableIcon( _TableName ); + xReturn = m_xTableUIProvider->getTableIcon( _TableName, _ColorMode ); // ask ourself // well, we don't have own functionality here ... File [changed]: connection.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/connection.hxx?r1=1.24.46.3&r2=1.24.46.4 Delta lines: +3 -3 ------------------- --- connection.hxx 18 Sep 2006 14:14:56 -0000 1.24.46.3 +++ connection.hxx 20 Sep 2006 08:46:06 -0000 1.24.46.4 @@ -4,9 +4,9 @@ * * $RCSfile: connection.hxx,v $ * - * $Revision: 1.24.46.3 $ + * $Revision: 1.24.46.4 $ * - * last change: $Author: fs $ $Date: 2006/09/18 14:14:56 $ + * last change: $Author: fs $ $Date: 2006/09/20 08:46:06 $ * * 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 ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > SAL_CALL getTableIcon( const ::rtl::OUString& TableName, ::sal_Int32 ColorMode ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL getTableEditor( const ::com::sun::star::uno::Reference< ::com::sun::star::sdb::application::XDatabaseDocumentUI >& DocumentUI, const ::rtl::OUString& TableName ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException); // IRefreshListener --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
