summaryrefslogtreecommitdiff
path: root/include/svl/lockfilecommon.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svl/lockfilecommon.hxx')
-rw-r--r--include/svl/lockfilecommon.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/lockfilecommon.hxx b/include/svl/lockfilecommon.hxx
index d71cb8262e92..6a19681b6f7a 100644
--- a/include/svl/lockfilecommon.hxx
+++ b/include/svl/lockfilecommon.hxx
@@ -24,10 +24,10 @@
#include <com/sun/star/uno/Sequence.hxx>
-#include <osl/mutex.hxx>
#include <tools/urlobj.hxx>
#include <o3tl/enumarray.hxx>
+#include <mutex>
#include <string_view>
#include <vector>
@@ -47,7 +47,7 @@ private:
OUString m_aURL;
protected:
- ::osl::Mutex m_aMutex;
+ std::mutex m_aMutex;
/// This method generates the URL of the lock file based on the document URL and the specified prefix.
static OUString GenerateOwnLockFileURL(std::u16string_view aOrigURL, std::u16string_view aPrefix);