Tag: cws_src680_qiq User: fs Date: 06/05/30 01:23:23 Modified: /dba/dbaccess/source/core/dataaccess/ connection.cxx, connection.hxx
Log: createObjectNames -> getObjectNames (the thing is stateless, so no need to re-create it every time) 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.46.2.2&r2=1.46.2.3 Delta lines: +4 -4 ------------------- --- connection.cxx 24 May 2006 06:41:37 -0000 1.46.2.2 +++ connection.cxx 30 May 2006 08:23:20 -0000 1.46.2.3 @@ -4,9 +4,9 @@ * * $RCSfile: connection.cxx,v $ * - * $Revision: 1.46.2.2 $ + * $Revision: 1.46.2.3 $ * - * last change: $Author: fs $ $Date: 2006/05/24 06:41:37 $ + * last change: $Author: fs $ $Date: 2006/05/30 08:23:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -789,13 +789,13 @@ } // ----------------------------------------------------------------------------- -Reference< tools::XObjectNames > SAL_CALL OConnection::createObjectNames( ) throw (RuntimeException) +Reference< tools::XObjectNames > SAL_CALL OConnection::getObjectNames( ) throw (RuntimeException) { MutexGuard aGuard(m_aMutex); checkDisposed(); impl_loadConnectionTools_throw(); - return m_xConnectionTools->createObjectNames(); + return m_xConnectionTools->getObjectNames(); } // ----------------------------------------------------------------------------- File [changed]: connection.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/dataaccess/connection.hxx?r1=1.23.4.3&r2=1.23.4.4 Delta lines: +3 -3 ------------------- --- connection.hxx 24 May 2006 06:41:37 -0000 1.23.4.3 +++ connection.hxx 30 May 2006 08:23:21 -0000 1.23.4.4 @@ -4,9 +4,9 @@ * * $RCSfile: connection.hxx,v $ * - * $Revision: 1.23.4.3 $ + * $Revision: 1.23.4.4 $ * - * last change: $Author: fs $ $Date: 2006/05/24 06:41:37 $ + * last change: $Author: fs $ $Date: 2006/05/30 08:23:21 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -239,7 +239,7 @@ // XConnectionTools virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XTableName > SAL_CALL createTableName( ) throw (::com::sun::star::uno::RuntimeException); - virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XObjectNames > SAL_CALL createObjectNames( ) throw (::com::sun::star::uno::RuntimeException); + virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XObjectNames > SAL_CALL getObjectNames( ) throw (::com::sun::star::uno::RuntimeException); virtual ::com::sun::star::uno::Reference< ::com::sun::star::sdb::tools::XDataSourceMetaData > SAL_CALL getDataSourceMetaData( ) throw (::com::sun::star::uno::RuntimeException); // IRefreshListener --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
