From 66fceca24ee0fccd03f23afc689d82c794a2d57e Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 30 Jul 2021 14:29:27 +0200 Subject: osl::Mutex->std::mutex in FmXDisposeListener Change-Id: I213499d4c707194c516cafe2ee323e61566cac71 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119706 Tested-by: Jenkins Reviewed-by: Noel Grandin --- include/svx/fmtools.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/svx/fmtools.hxx') diff --git a/include/svx/fmtools.hxx b/include/svx/fmtools.hxx index 1ead9069b4f0..869023f06f7f 100644 --- a/include/svx/fmtools.hxx +++ b/include/svx/fmtools.hxx @@ -31,6 +31,7 @@ #include #include #include +#include namespace com::sun::star::awt { class XWindow; } namespace com::sun::star::beans { class XPropertySet; } @@ -132,7 +133,7 @@ class SAL_WARN_UNUSED FmXDisposeListener friend class FmXDisposeMultiplexer; rtl::Reference m_pAdapter; - osl::Mutex m_aMutex; + std::mutex m_aMutex; public: virtual ~FmXDisposeListener(); -- cgit