From bdc4dc93a9edd5f46bdede12514ac5f66bf43167 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 21 Feb 2023 14:26:39 +0200 Subject: BaseMutex->std::mutex in CommandDispatch Change-Id: Ic73a84eb793d45e1041698e45e2c844a1e2f2f66 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147415 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/comphelper/compbase.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/comphelper/compbase.hxx b/include/comphelper/compbase.hxx index ad34ed7007ea..6cde1fbb5f74 100644 --- a/include/comphelper/compbase.hxx +++ b/include/comphelper/compbase.hxx @@ -66,9 +66,9 @@ class SAL_DLLPUBLIC_TEMPLATE WeakComponentImplHelper : public WeakComponentImplH public Ifc... { public: - virtual void SAL_CALL acquire() noexcept final override { OWeakObject::acquire(); } + virtual void SAL_CALL acquire() noexcept override { OWeakObject::acquire(); } - virtual void SAL_CALL release() noexcept final override { OWeakObject::release(); } + virtual void SAL_CALL release() noexcept override { OWeakObject::release(); } // css::lang::XComponent virtual void SAL_CALL dispose() noexcept final override -- cgit