diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-08 13:52:00 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-09-08 20:20:56 +0200 |
commit | 59bf2fbb5f6ebe62b4176c040054ff1c80e2d29a (patch) | |
tree | 4d24f1408a72cd7fd0a2ef6e3e468e9143dd71fa /include | |
parent | b438f10910234241f7367d2598c81e0bf1e44cd4 (diff) |
SvUnoTextRangeEnumeration does not need to implement XAggreggation
Checked on jenkins using 'make check' and
+ void SAL_CALL setDelegator(css::uno::Reference<css::uno::XInterface> const &) final { assert(false); }
+
Change-Id: I4313e8c25ab3fec4b96c7a0643c7acf9ba89785f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156717
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/editeng/unotext.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/editeng/unotext.hxx b/include/editeng/unotext.hxx index 213c5efa6b4f..59e670a0f06d 100644 --- a/include/editeng/unotext.hxx +++ b/include/editeng/unotext.hxx @@ -43,6 +43,7 @@ #include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/util/XComplexColor.hpp> #include <comphelper/interfacecontainer4.hxx> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/implbase1.hxx> #include <cppuhelper/weakagg.hxx> #include <osl/diagnose.hxx> @@ -611,7 +612,7 @@ public: }; -class SvxUnoTextRangeEnumeration final : public ::cppu::WeakAggImplHelper1< css::container::XEnumeration > +class SvxUnoTextRangeEnumeration final : public ::cppu::WeakImplHelper< css::container::XEnumeration > { private: std::unique_ptr<SvxEditSource> mpEditSource; |