User: obo Date: 2006/07/10 08:04:40 Modified: dba/dbaccess/source/core/api/TableDeco.cxx
Log: INTEGRATION: CWS qiq (1.25.124); FILE MERGED 2006/06/28 10:31:07 fs 1.25.124.3: #i10000# 2006/06/27 11:56:53 fs 1.25.124.2: RESYNC: (1.25-1.26); FILE MERGED 2006/06/16 11:47:36 fs 1.25.124.1: during #i51143#: refactored VCollection: - createEmptyObject now named createDescriptor - cloneObject removed - appendObject now returns the newly created object (previously done via a subsequent call to cloneObject) File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: TableDeco.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/TableDeco.cxx?r1=1.26&r2=1.27 Delta lines: +6 -8 ------------------- --- TableDeco.cxx 20 Jun 2006 02:38:18 -0000 1.26 +++ TableDeco.cxx 10 Jul 2006 15:04:38 -0000 1.27 @@ -700,22 +700,20 @@ return pReturn; } // ----------------------------------------------------------------------------- +void ODBTableDecorator::columnAppended( const Reference< XPropertySet >& /*_rxSourceDescriptor*/ ) +{ + // not interested in +} +// ----------------------------------------------------------------------------- void ODBTableDecorator::columnDropped(const ::rtl::OUString& _sName) { Reference<XDrop> xDrop(m_xColumnDefinitions,UNO_QUERY); if ( xDrop.is() && m_xColumnDefinitions->hasByName(_sName) ) - { xDrop->dropByName(_sName); - } -} - -// ----------------------------------------------------------------------------- -void ODBTableDecorator::columnCloned(const Reference< XPropertySet >& /*_xClone*/) -{ } // ----------------------------------------------------------------------------- -Reference< XPropertySet > ODBTableDecorator::createEmptyObject() +Reference< XPropertySet > ODBTableDecorator::createColumnDescriptor() { Reference<XDataDescriptorFactory> xNames; if(m_xTable.is()) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
