diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2022-05-07 21:06:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-08 16:38:31 +0200 |
commit | 40b0cf86c23d72af90f964597ac814ceaf846259 (patch) | |
tree | 3ad694dcc19186c92846233444574f71d2d1bd17 /sfx2/inc | |
parent | df63d1aa9ca0676e3df7b68dc8dc99246aa44240 (diff) |
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 <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sfx2/inc')
-rw-r--r-- | sfx2/inc/preventduplicateinteraction.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
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 <toolkit/helper/vclunohelper.hxx> #include <vcl/wrkwin.hxx> #include <vcl/svapp.hxx> +#include <mutex> namespace com::sun::star::uno { class XComponentContext; @@ -152,7 +153,7 @@ public: class PreventDuplicateInteraction final : public ::cppu::WeakImplHelper<css::lang::XInitialization, css::task::XInteractionHandler2> { - mutable ::osl::Mutex m_aLock; + mutable std::mutex m_aLock; // structs, types etc. public: |