diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-11-25 22:07:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-27 13:56:43 +0100 |
commit | 1a122a5bce95bb0e6f5c776abd10c0288b48e126 (patch) | |
tree | e943126bdbddd1e595b55660b219af3a8e1fa286 /package/source/xstor/ocompinstream.cxx | |
parent | d448b16d811593f0c8e8f2e60e957a83390c4b99 (diff) |
use more OInterfaceContainerHelper3 in package
Change-Id: I4a9f0f4ae95ec236ef32462c1aaa8d774be15378
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125938
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'package/source/xstor/ocompinstream.cxx')
-rw-r--r-- | package/source/xstor/ocompinstream.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/source/xstor/ocompinstream.cxx b/package/source/xstor/ocompinstream.cxx index 783b426a9af7..7f59275f491d 100644 --- a/package/source/xstor/ocompinstream.cxx +++ b/package/source/xstor/ocompinstream.cxx @@ -244,7 +244,7 @@ void SAL_CALL OInputCompStream::addEventListener( const uno::Reference< lang::XE } if ( !m_pInterfaceContainer ) - m_pInterfaceContainer.reset( new ::comphelper::OInterfaceContainerHelper2( m_xMutex->GetMutex() ) ); + m_pInterfaceContainer.reset( new ::comphelper::OInterfaceContainerHelper3<css::lang::XEventListener>( m_xMutex->GetMutex() ) ); m_pInterfaceContainer->addInterface( xListener ); } |