User: rt Date: 2008-01-30 08:32:34+0000 Modified: dba/dbaccess/source/core/dataaccess/connection.cxx
Log: INTEGRATION: CWS dba24d (1.53.4); FILE MERGED 2007/12/04 09:24:09 oj 1.53.4.1: #i81644# add new common var to block elementInserted events 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.53&r2=1.54 Delta lines: +3 -2 ------------------- --- connection.cxx 2007-11-21 15:37:29+0000 1.53 +++ connection.cxx 2008-01-30 08:32:32+0000 1.54 @@ -361,6 +361,7 @@ ,m_pTables(NULL) ,m_pViews(NULL) ,m_aWarnings( Reference< XWarningsSupplier >( _rxMaster, UNO_QUERY ) ) + ,m_nInAppend(0) ,m_bSupportsViews(sal_False) ,m_bSupportsUsers(sal_False) ,m_bSupportsGroups(sal_False) @@ -398,7 +399,7 @@ { } Reference< XNameContainer > xTableDefinitions(_rDB.getTables(),UNO_QUERY); - m_pTables = new OTableContainer( *this, m_aMutex, this, bCase, xTableDefinitions, this, &m_aWarnings ); + m_pTables = new OTableContainer( *this, m_aMutex, this, bCase, xTableDefinitions, this, &m_aWarnings,m_nInAppend ); // check if we supports types if ( xMeta.is() ) @@ -428,7 +429,7 @@ } if(m_bSupportsViews) { - m_pViews = new OViewContainer(*this, m_aMutex, this, bCase,this,&m_aWarnings); + m_pViews = new OViewContainer(*this, m_aMutex, this, bCase,this,&m_aWarnings,m_nInAppend); m_pViews->addContainerListener(m_pTables); m_pTables->addContainerListener(m_pViews); } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
