diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-09-13 11:16:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-09-14 08:18:24 +0200 |
commit | ee6de54dde08a607ea3590804436678ee6363f7e (patch) | |
tree | 2ec806d6ec1d910cba0e01fdbf17c11260343e8b /include/svx/gridctrl.hxx | |
parent | 79c586220b2a843ff7c7b458f507d4c1d549d331 (diff) |
use more concrete UNO types in svx
Change-Id: I55fd67a66067f0c4f43ef182101c8d72a22fe3f3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173325
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Jenkins
Diffstat (limited to 'include/svx/gridctrl.hxx')
-rw-r--r-- | include/svx/gridctrl.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svx/gridctrl.hxx b/include/svx/gridctrl.hxx index 09c2a609a483..6bdee5cc6477 100644 --- a/include/svx/gridctrl.hxx +++ b/include/svx/gridctrl.hxx @@ -42,6 +42,7 @@ namespace weld { class Menu; } class CursorWrapper; class GridFieldValueListener; +class RowSetEventListener; bool CompareBookmark(const css::uno::Any& aLeft, const css::uno::Any& aRight); @@ -257,8 +258,7 @@ private: // For that reason we have to listen to some properties of our data source. rtl::Reference<::comphelper::OPropertyChangeMultiplexer> m_pDataSourcePropMultiplexer; FmXGridSourcePropListener* m_pDataSourcePropListener; - css::uno::Reference< css::sdb::XRowsChangeListener> - m_xRowSetListener; // get notification when rows were changed + rtl::Reference<RowSetEventListener> m_xRowSetListener; // get notification when rows were changed std::map<sal_uInt16, GridFieldValueListener*> m_aFieldListeners; // property listeners for field values |