User: hr      
Date: 05/09/23 05:03:12

Modified:
 /dba/dbaccess/source/core/api/
  RowSetBase.cxx

Log:
 INTEGRATION: CWS dba201b (1.75.38); FILE MERGED
 2005/09/21 06:45:41 oj 1.75.38.2: RESYNC: (1.75-1.77); FILE MERGED
 2005/07/11 13:36:58 fs 1.75.38.1: merging CWS dba201 into CWS dba201b

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.77&r2=1.78
Delta lines:  +10 -0
--------------------
--- RowSetBase.cxx      8 Sep 2005 10:01:01 -0000       1.77
+++ RowSetBase.cxx      23 Sep 2005 12:03:10 -0000      1.78
@@ -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 @@
        return Any();
 }
 // 
=============================================================================
+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]

Reply via email to