summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-02-21 14:26:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-02-22 07:52:17 +0000
commitbdc4dc93a9edd5f46bdede12514ac5f66bf43167 (patch)
treeac7ad7e4689e7c70e1c7e62c456fcbf6e57124e0 /include
parentc060e7851bd6238ad6f4bdf0997c958c561cf8cf (diff)
BaseMutex->std::mutex in CommandDispatch
Change-Id: Ic73a84eb793d45e1041698e45e2c844a1e2f2f66 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147415 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/comphelper/compbase.hxx4
1 files changed, 2 insertions, 2 deletions
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