From 40b0cf86c23d72af90f964597ac814ceaf846259 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 7 May 2022 21:06:33 +0200 Subject: osl::Mutex->std::mutex in sfx2::PreventDuplicateInteraction Change-Id: I4abc1462b4d691dc699a9716573d23824897176b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134015 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sfx2/inc/preventduplicateinteraction.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'sfx2/inc') diff --git a/sfx2/inc/preventduplicateinteraction.hxx b/sfx2/inc/preventduplicateinteraction.hxx index a5eb448eca60..62e59dd96c2e 100644 --- a/sfx2/inc/preventduplicateinteraction.hxx +++ b/sfx2/inc/preventduplicateinteraction.hxx @@ -34,6 +34,7 @@ #include #include #include +#include namespace com::sun::star::uno { class XComponentContext; @@ -152,7 +153,7 @@ public: class PreventDuplicateInteraction final : public ::cppu::WeakImplHelper { - mutable ::osl::Mutex m_aLock; + mutable std::mutex m_aLock; // structs, types etc. public: -- cgit