diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-30 14:56:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-31 10:01:47 +0200 |
commit | 421c3c9ca4ad01540838cbe4ecb89e353a70e14c (patch) | |
tree | 74826b672058c1fde452f3b8ada2949d5729e856 /include | |
parent | 049732b2190ee24b11a71f9236d597a37b54ea77 (diff) |
osl::Mutex->std::mutex in AccessibleStateSetHelper
Change-Id: I20baf32570eef64e8288bb82804c2530f2c6a96b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119712
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/unotools/accessiblestatesethelper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/accessiblestatesethelper.hxx b/include/unotools/accessiblestatesethelper.hxx index 6fa66279f885..b1e5644f1eea 100644 --- a/include/unotools/accessiblestatesethelper.hxx +++ b/include/unotools/accessiblestatesethelper.hxx @@ -22,8 +22,8 @@ #include <unotools/unotoolsdllapi.h> #include <com/sun/star/accessibility/XAccessibleStateSet.hpp> -#include <osl/mutex.hxx> #include <cppuhelper/implbase.hxx> +#include <mutex> //= XAccessibleStateSet helper classes @@ -126,7 +126,7 @@ public: private: /// Mutex guarding this object. - ::osl::Mutex maMutex; + std::mutex maMutex; /// The implementation of this helper interface. sal_uInt64 maStates; }; |