User: hr Date: 06/06/19 19:41:49 Modified: /dba/dbaccess/source/core/api/ table.cxx
Log: INTEGRATION: CWS warnings01 (1.54.50); FILE MERGED 2006/06/14 10:57:44 fs 1.54.50.3: removed useless include 2006/05/12 16:25:13 sb 1.54.50.2: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162 (and in some cases reverted previous, problematic changes). 2006/03/24 15:35:50 fs 1.54.50.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro) File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: table.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/table.cxx?r1=1.54&r2=1.55 Delta lines: +8 -6 ------------------- --- table.cxx 8 Sep 2005 10:12:13 -0000 1.54 +++ table.cxx 20 Jun 2006 02:41:47 -0000 1.55 @@ -94,9 +94,6 @@ #ifndef _COMPHELPER_EXTRACT_HXX_ #include <comphelper/extract.hxx> #endif -#ifndef _CONNECTIVITY_SDBCX_COLUMN_HXX_ -#include <connectivity/sdbcx/VColumn.hxx> -#endif #ifndef DBACORE_SDBCORETOOLS_HXX #include "sdbcoretools.hxx" #endif @@ -139,8 +136,8 @@ ,const ::rtl::OUString& _rDesc ,const Reference< XNameAccess >& _xColumnDefinitions) throw(SQLException) :OTable_Base(_pTables,_rxConn,_rxConn->getMetaData().is() && _rxConn->getMetaData()->storesMixedCaseQuotedIdentifiers(), _rName, _rType, _rDesc, _rSchema, _rCatalog ) - ,m_nPrivileges(0) ,m_xColumnDefinitions(_xColumnDefinitions) + ,m_nPrivileges(0) { DBG_CTOR(ODBTable, NULL); DBG_ASSERT(getMetaData().is(), "ODBTable::ODBTable : invalid conn !"); @@ -199,6 +196,10 @@ } } //-------------------------------------------------------------------------- +void ODBTable::columnCloned(const Reference< XPropertySet >& /*_xClone*/) +{ +} +//-------------------------------------------------------------------------- Sequence< sal_Int8 > ODBTable::getImplementationId() throw (RuntimeException) { static OImplementationId * pId = 0; @@ -362,7 +363,7 @@ } // XRename, //------------------------------------------------------------------------------ -void SAL_CALL ODBTable::rename( const ::rtl::OUString& _rNewName ) throw(SQLException, ElementExistException, RuntimeException) +void SAL_CALL ODBTable::rename( const ::rtl::OUString& /*_rNewName*/ ) throw(SQLException, ElementExistException, RuntimeException) { throw SQLException(DBACORE_RESSTRING(RID_STR_NO_TABLE_RENAME),*this,SQLSTATE_GENERAL,1000,Any() ); } @@ -372,7 +373,8 @@ void SAL_CALL ODBTable::alterColumnByName( const ::rtl::OUString& _rName, const Reference< XPropertySet >& _rxDescriptor ) throw(SQLException, NoSuchElementException, RuntimeException) { ::osl::MutexGuard aGuard(m_aMutex); - checkDisposed(OTable_Linux::rBHelper.bDisposed); + checkDisposed( + connectivity::sdbcx::OTableDescriptor_BASE::rBHelper.bDisposed); if(m_pColumns->hasByName(_rName)) { ::rtl::OUString sSql = ::rtl::OUString::createFromAscii("ALTER TABLE "); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
