diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-12-17 18:10:08 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-18 18:18:56 +0100 |
commit | a22772c4393f4b0a3d1a838f074c4d51be762388 (patch) | |
tree | c042d88a80f89271ee16c476039af0b3c39e302b /include/ucbhelper | |
parent | 580b5227144c6d71b1dc2663fc741ed29f119767 (diff) |
osl::Mutex->std::mutex in ucbhelper::PropertyValueSet
Change-Id: Ie4d3392e26a24ff3ffd9869809bb48bee7fcc2bd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127067
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/ucbhelper')
-rw-r--r-- | include/ucbhelper/propertyvalueset.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ucbhelper/propertyvalueset.hxx b/include/ucbhelper/propertyvalueset.hxx index 680aa0cd8879..ea088e910694 100644 --- a/include/ucbhelper/propertyvalueset.hxx +++ b/include/ucbhelper/propertyvalueset.hxx @@ -25,7 +25,7 @@ #include <com/sun/star/beans/Property.hpp> #include <cppuhelper/implbase.hxx> -#include <osl/mutex.hxx> +#include <mutex> #include <ucbhelper/ucbhelperdllapi.h> #include <memory> @@ -61,7 +61,7 @@ class UCBHELPER_DLLPUBLIC PropertyValueSet final : { css::uno::Reference< css::uno::XComponentContext > m_xContext; css::uno::Reference< css::script::XTypeConverter > m_xTypeConverter; - osl::Mutex m_aMutex; + std::mutex m_aMutex; std::unique_ptr<PropertyValues> m_pValues; bool m_bWasNull; bool m_bTriedToGetTypeConverter; |