diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-11-22 21:17:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-11-27 15:26:22 +0100 |
commit | fdae440a4d877f93bee430a03dd55841ccbe7876 (patch) | |
tree | 5f9188116e67a235378fd63577e4559879e57ced /include/connectivity/sdbcx | |
parent | 88ff4e9624940aa596bf415cd443b144332091b3 (diff) |
use more OInterfaceContainerHelper3 in connectivity::sdbcx::OCollection
Change-Id: Idf3313b374eae05c4a65c101e1e7ce91c743b420
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125928
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/connectivity/sdbcx')
-rw-r--r-- | include/connectivity/sdbcx/VCollection.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/connectivity/sdbcx/VCollection.hxx b/include/connectivity/sdbcx/VCollection.hxx index ab0dd3bcc828..0f5a0b3fbcb9 100644 --- a/include/connectivity/sdbcx/VCollection.hxx +++ b/include/connectivity/sdbcx/VCollection.hxx @@ -31,7 +31,7 @@ #include <com/sun/star/sdbcx/XAppend.hpp> #include <com/sun/star/sdbcx/XDrop.hpp> #include <com/sun/star/sdbc/XColumnLocate.hpp> -#include <comphelper/interfacecontainer2.hxx> +#include <comphelper/interfacecontainer3.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <connectivity/CommonTools.hxx> #include <com/sun/star/container/XContainer.hpp> @@ -90,8 +90,8 @@ namespace connectivity::sdbcx protected: ::std::unique_ptr<IObjectCollection> m_pElements; - ::comphelper::OInterfaceContainerHelper2 m_aContainerListeners; - ::comphelper::OInterfaceContainerHelper2 m_aRefreshListeners; + ::comphelper::OInterfaceContainerHelper3<css::container::XContainerListener> m_aContainerListeners; + ::comphelper::OInterfaceContainerHelper3<css::util::XRefreshListener> m_aRefreshListeners; protected: ::cppu::OWeakObject& m_rParent; // parent of the collection |