Tag: cws_src680_dba30 User: fs Date: 05/10/13 07:49:12 Modified: /dba/dbaccess/source/core/api/ RowSetBase.cxx
Log: RESYNC: (1.77-1.78); FILE MERGED File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: RowSetBase.cxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/RowSetBase.cxx?r1=1.75.6.2&r2=1.75.6.3 Delta lines: +10 -0 -------------------- --- RowSetBase.cxx 30 Sep 2005 06:00:35 -0000 1.75.6.2 +++ RowSetBase.cxx 13 Oct 2005 14:49:10 -0000 1.75.6.3 @@ -130,6 +130,7 @@ // ========================================================================= // = ORowSetBase // ========================================================================= +DBG_NAME(ORowSetBase) // ------------------------------------------------------------------------- ORowSetBase::ORowSetBase(::cppu::OBroadcastHelper &_rBHelper,::osl::Mutex* _pMutex) : OPropertyStateContainer(_rBHelper) @@ -147,6 +148,8 @@ , m_nLastColumnIndex(-1) , m_pEmptyCollection( NULL ) { + DBG_CTOR(ORowSetBase,NULL); + sal_Int32 nRBT = PropertyAttribute::READONLY | PropertyAttribute::BOUND | PropertyAttribute::TRANSIENT; registerProperty(PROPERTY_ROWCOUNT, PROPERTY_ID_ROWCOUNT, nRBT, &m_nRowCount, ::getCppuType(reinterpret_cast< sal_Int32*>(NULL))); @@ -166,6 +169,8 @@ if ( m_pEmptyCollection ) delete m_pEmptyCollection; + + DBG_DTOR(ORowSetBase,NULL); } // com::sun::star::lang::XTypeProvider //-------------------------------------------------------------------------- @@ -1224,6 +1229,7 @@ _rDefault.clear(); } // ============================================================================= +DBG_NAME(ORowSetNotifier) // ----------------------------------------------------------------------------- ORowSetNotifier::ORowSetNotifier( ORowSetBase* _pRowSet ) :m_pRowSet( _pRowSet ) @@ -1233,6 +1239,8 @@ ,m_bNotifyCalled( sal_False ) #endif { + DBG_CTOR(ORowSetNotifier,NULL); + OSL_ENSURE( m_pRowSet, "ORowSetNotifier::ORowSetNotifier: invalid row set. This wil crash." ); // remember the "inserted" and "modified" state for later firing @@ -1247,6 +1255,8 @@ // ----------------------------------------------------------------------------- ORowSetNotifier::~ORowSetNotifier( ) { + + DBG_DTOR(ORowSetNotifier,NULL); } // ----------------------------------------------------------------------------- --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
