diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-30 14:29:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-30 15:23:52 +0200 |
commit | 66fceca24ee0fccd03f23afc689d82c794a2d57e (patch) | |
tree | f5f2b82ec8e95fee06e030ef934b3f20cf0e984e /include/svx/fmtools.hxx | |
parent | 7b5922eb666e5f153060468b271d99510adb422e (diff) |
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/fmtools.hxx')
-rw-r--r-- | include/svx/fmtools.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
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 <rtl/ref.hxx> #include <cppuhelper/implbase.hxx> #include <o3tl/sorted_vector.hxx> +#include <mutex> 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<FmXDisposeMultiplexer> m_pAdapter; - osl::Mutex m_aMutex; + std::mutex m_aMutex; public: virtual ~FmXDisposeListener(); |