summaryrefslogtreecommitdiff
path: root/ucb/source/core/ucbstore.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-16 16:08:48 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-17 07:26:25 +0100
commit7994791e0a3681d46d8b257f09422b04deeae41c (patch)
treee04944776200e5bad5ac80618aaf3270a23c26d6 /ucb/source/core/ucbstore.cxx
parent134425eb98147d197833cb4ef7bb4d8c3d7fd2bc (diff)
use more OInterfaceContainer3::notifyEach
Change-Id: I0dd6e9f1514792e73a31e81896d09c27c1912318 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126966 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source/core/ucbstore.cxx')
-rw-r--r--ucb/source/core/ucbstore.cxx21
1 files changed, 3 insertions, 18 deletions
diff --git a/ucb/source/core/ucbstore.cxx b/ucb/source/core/ucbstore.cxx
index 9d0301e16268..a0eece461c7d 100644
--- a/ucb/source/core/ucbstore.cxx
+++ b/ucb/source/core/ucbstore.cxx
@@ -1906,12 +1906,7 @@ void PersistentPropertySet::notifyPropertyChangeEvent(
m_pPropertyChangeListeners->getContainer( rEvent.PropertyName );
if ( pContainer && pContainer->getLength() )
{
- OInterfaceIteratorHelper3 aIter( *pContainer );
- while ( aIter.hasMoreElements() )
- {
- // Propagate event.
- aIter.next()->propertyChange( rEvent );
- }
+ pContainer->notifyEach( &XPropertyChangeListener::propertyChange, rEvent );
}
// Get "normal" listeners for all properties.
@@ -1919,12 +1914,7 @@ void PersistentPropertySet::notifyPropertyChangeEvent(
m_pPropertyChangeListeners->getContainer( OUString() );
if ( pNoNameContainer && pNoNameContainer->getLength() )
{
- OInterfaceIteratorHelper3 aIter( *pNoNameContainer );
- while ( aIter.hasMoreElements() )
- {
- // Propagate event.
- aIter.next()->propertyChange( rEvent );
- }
+ pNoNameContainer->notifyEach( &XPropertyChangeListener::propertyChange, rEvent );
}
}
@@ -1936,12 +1926,7 @@ void PersistentPropertySet::notifyPropertySetInfoChange(
return;
// Notify event listeners.
- OInterfaceIteratorHelper3 aIter( *m_pPropSetChangeListeners );
- while ( aIter.hasMoreElements() )
- {
- // Propagate event.
- aIter.next()->propertySetInfoChange( evt );
- }
+ m_pPropSetChangeListeners->notifyEach( &XPropertySetInfoChangeListener::propertySetInfoChange, evt );
}