diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-01 21:43:52 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-04 12:34:12 +0100 |
commit | 79824cea8add8dfd69a284800f5b365fc20bece9 (patch) | |
tree | e6579ac64fba3db2fed6f23e4c88e5a2d1325f46 /svx/source | |
parent | e782eefb2610af6d412d91d1a94dafaf53806f89 (diff) |
use OMultiTypeInterfaceContainerHelperVar3 in PropertyChangeNotifier
Change-Id: I861bb71702a56997ce5b28bca7750dba6a11f9c8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126342
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/unodraw/shapepropertynotifier.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/unodraw/shapepropertynotifier.cxx b/svx/source/unodraw/shapepropertynotifier.cxx index 29ad15f2358f..9151190c0cda 100644 --- a/svx/source/unodraw/shapepropertynotifier.cxx +++ b/svx/source/unodraw/shapepropertynotifier.cxx @@ -95,8 +95,8 @@ namespace svx OUString sPropertyName( provPos->second->getPropertyName() ); - ::comphelper::OInterfaceContainerHelper2* pPropListeners = m_aPropertyChangeListeners.getContainer( sPropertyName ); - ::comphelper::OInterfaceContainerHelper2* pAllListeners = m_aPropertyChangeListeners.getContainer( OUString() ); + ::comphelper::OInterfaceContainerHelper3<XPropertyChangeListener>* pPropListeners = m_aPropertyChangeListeners.getContainer( sPropertyName ); + ::comphelper::OInterfaceContainerHelper3<XPropertyChangeListener>* pAllListeners = m_aPropertyChangeListeners.getContainer( OUString() ); if ( !pPropListeners && !pAllListeners ) return; |