summaryrefslogtreecommitdiffstats
path: root/include/svx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-11-22 21:28:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-11-27 12:09:36 +0100
commit976847e25c8160dcbfe895cfa7945ac990494e1e (patch)
treec29d36bba7809cf5d2712fca678022a582867943 /include/svx
parentuse more OInterfaceContainerHelper3 in UnoControlListBoxModel (diff)
downloadcore-976847e25c8160dcbfe895cfa7945ac990494e1e.tar.gz
core-976847e25c8160dcbfe895cfa7945ac990494e1e.zip
use more OInterfaceContainerHelper3 in FmXGridPeer
Change-Id: I6545b2a8ae750b0480da84a09f803be0151f85d0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125931 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx')
-rw-r--r--include/svx/fmgridif.hxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/include/svx/fmgridif.hxx b/include/svx/fmgridif.hxx
index 6d4793ce9366..b98c8ac98c13 100644
--- a/include/svx/fmgridif.hxx
+++ b/include/svx/fmgridif.hxx
@@ -44,6 +44,7 @@
#include <tools/wintypes.hxx>
#include <toolkit/controls/unocontrol.hxx>
#include <toolkit/awt/vclxwindow.hxx>
+#include <comphelper/interfacecontainer3.hxx>
#include <comphelper/servicehelper.hxx>
#include <comphelper/uno3.hxx>
#include <cppuhelper/implbase.hxx>
@@ -346,11 +347,11 @@ protected:
private:
css::uno::Reference< css::container::XIndexContainer > m_xColumns;
css::uno::Reference< css::sdbc::XRowSet > m_xCursor;
- ::comphelper::OInterfaceContainerHelper2 m_aModifyListeners,
- m_aUpdateListeners,
- m_aContainerListeners,
- m_aSelectionListeners,
- m_aGridControlListeners;
+ ::comphelper::OInterfaceContainerHelper3<css::util::XModifyListener> m_aModifyListeners;
+ ::comphelper::OInterfaceContainerHelper3<css::form::XUpdateListener> m_aUpdateListeners;
+ ::comphelper::OInterfaceContainerHelper3<css::container::XContainerListener> m_aContainerListeners;
+ ::comphelper::OInterfaceContainerHelper3<css::view::XSelectionChangeListener> m_aSelectionListeners;
+ ::comphelper::OInterfaceContainerHelper3<css::form::XGridControlListener> m_aGridControlListeners;
OUString m_aMode;
sal_Int32 m_nCursorListening;