diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-02-15 10:55:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2023-02-15 10:03:24 +0000 |
commit | bfbbdab13f16adf66f1afb9e2a2a103162927ba3 (patch) | |
tree | 666df4476917cf0a87427ebb4a215cca56bc3aa0 /include/svl/lockfilecommon.hxx | |
parent | ddf4f82443254d88d9b984c68ed05fa16bb4607a (diff) |
osl::Mutex->std::mutex in LockFileCommon
Change-Id: I729b7ecf8280c67e4698b174a6151d1eda41be60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147040
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl/lockfilecommon.hxx')
-rw-r--r-- | include/svl/lockfilecommon.hxx | 4 |
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); |