diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2023-01-19 14:10:22 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2023-01-19 15:00:56 +0000 |
commit | 925dfcb507c4054e00e5aa9acdbfa095b6a32d05 (patch) | |
tree | 571b84036eaf6d94018cc6bf7e208e81829983ab /comphelper | |
parent | 1786cd0687c5223821e673fe4d2f7b2ff65deb00 (diff) |
Base OPropertyBag on WeakImplHelper
...rather than on the deprecated WeakAggImplHellper5
Change-Id: Id9e61341cba10c4a497500d41479629ff3af30ee
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/145790
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/opropertybag.hxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/comphelper/source/property/opropertybag.hxx b/comphelper/source/property/opropertybag.hxx index 28333901c2e3..66c38d870c10 100644 --- a/comphelper/source/property/opropertybag.hxx +++ b/comphelper/source/property/opropertybag.hxx @@ -25,7 +25,7 @@ #include <com/sun/star/beans/XPropertyBag.hpp> #include <com/sun/star/container/XSet.hpp> -#include <cppuhelper/implbase5.hxx> +#include <cppuhelper/implbase.hxx> #include <comphelper/interfacecontainer3.hxx> #include <comphelper/propstate.hxx> #include <comphelper/broadcasthelper.hxx> @@ -55,12 +55,12 @@ namespace comphelper typedef std::map< sal_Int32, css::uno::Any > MapInt2Any; typedef std::set< css::uno::Type, UnoTypeLess > TypeBag; - typedef ::cppu::WeakAggImplHelper5 < css::beans::XPropertyBag - , css::util::XModifiable - , css::lang::XServiceInfo - , css::lang::XInitialization - , css::container::XSet - > OPropertyBag_Base; + typedef ::cppu::WeakImplHelper < css::beans::XPropertyBag + , css::util::XModifiable + , css::lang::XServiceInfo + , css::lang::XInitialization + , css::container::XSet + > OPropertyBag_Base; typedef ::comphelper::OPropertyStateHelper OPropertyBag_PBase; class OPropertyBag final : public ::comphelper::OMutexAndBroadcastHelper // must be before OPropertyBag_PBase |