User: hr Date: 06/06/19 19:36:16 Modified: /dba/dbaccess/source/core/api/ RowSetBase.hxx
Log: INTEGRATION: CWS warnings01 (1.32.48); FILE MERGED 2006/05/12 16:25:12 sb 1.32.48.3: #i53898# Made code warning-free and/or compile at all after resync to SRC680m162 (and in some cases reverted previous, problematic changes). 2006/04/07 20:45:24 sb 1.32.48.2: RESYNC: (1.32-1.35); FILE MERGED 2006/03/24 15:35:46 fs 1.32.48.1: #i57457# warning-free code (unxlngi6/.pro + unxsoli4.pro) File Changes: Directory: /dba/dbaccess/source/core/api/ ========================================= File [changed]: RowSetBase.hxx Url: http://dba.openoffice.org/source/browse/dba/dbaccess/source/core/api/RowSetBase.hxx?r1=1.35&r2=1.36 Delta lines: +10 -5 -------------------- --- RowSetBase.hxx 6 Feb 2006 16:54:19 -0000 1.35 +++ RowSetBase.hxx 20 Jun 2006 02:36:14 -0000 1.36 @@ -163,11 +163,15 @@ // fire a notification for all that are listening on column::VALUE property void firePropertyChange(const ORowSetRow& _rOldRow); - virtual void fireRowcount() { } // fire if rowcount changed - virtual sal_Bool notifyAllListenersCursorBeforeMove(::osl::ResettableMutexGuard& _rGuard) {return sal_True; } // notify row changed - virtual void notifyAllListenersCursorMoved(::osl::ResettableMutexGuard& _rGuard) { } // notify cursor moved - virtual void notifyAllListeners(::osl::ResettableMutexGuard& _rGuard) { } // notify all that rowset changed + // fire if rowcount changed + virtual void fireRowcount(); + // notify row changed + virtual sal_Bool notifyAllListenersCursorBeforeMove(::osl::ResettableMutexGuard& _rGuard); + // notify cursor moved + virtual void notifyAllListenersCursorMoved(::osl::ResettableMutexGuard& _rGuard); + // notify all that rowset changed + virtual void notifyAllListeners(::osl::ResettableMutexGuard& _rGuard); // cancel the insertion, if necessary (means if we're on the insert row) virtual void doCancelModification( ) = 0; @@ -369,6 +373,7 @@ { fireProperty( _nProperty, _bNew, _bOld ); } + using ::comphelper::OPropertyStateContainer::getFastPropertyValue; ::osl::Mutex* getMutex() const { return m_pMutex; } }; --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
