summaryrefslogtreecommitdiff
path: root/framework/source/inc
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-18 20:01:14 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-20 08:33:50 +0100
commit7fe0a4cddf23f0c15e95ff59e658ee3bbe11db51 (patch)
tree0bb1f2f37192268c5f63d569d640a7ab5e9350e3 /framework/source/inc
parent71f27d514549b7354f2c7b759c661e689e586162 (diff)
osl::Mutex->std::mutex in StorageHolder
Change-Id: Ie0ababcea79b445ac73ffd4e69d260a7641af663 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127106 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'framework/source/inc')
-rw-r--r--framework/source/inc/accelerators/storageholder.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/framework/source/inc/accelerators/storageholder.hxx b/framework/source/inc/accelerators/storageholder.hxx
index 22a301277cd7..d2e17ee1a550 100644
--- a/framework/source/inc/accelerators/storageholder.hxx
+++ b/framework/source/inc/accelerators/storageholder.hxx
@@ -21,6 +21,7 @@
#include <com/sun/star/embed/XStorage.hpp>
+#include <mutex>
#include <unordered_map>
#include <vector>
@@ -60,7 +61,7 @@ class StorageHolder final
// member
private:
- mutable osl::Mutex m_mutex;
+ mutable std::mutex m_mutex;
/** @short TODO */
css::uno::Reference< css::embed::XStorage > m_xRoot;