diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2021-08-05 20:29:45 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-05 22:29:23 +0200 |
commit | f376d68736d9a0f08b2a6ae5c126b0bb5570ff4b (patch) | |
tree | 8d6acedc766ce62f794f990502c4ce987a6f6df3 /ucb | |
parent | dfed833ff3ef1532b18745df5ac0909d4e09028e (diff) |
osl::Mutex->std::mutex in InteractionSupplyPassword
Change-Id: I98d54c8ab1c193a3eb43898a7be68986dd581447
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120085
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx b/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx index a5a8f742b41d..fe853d84c45b 100644 --- a/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx +++ b/ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx @@ -18,8 +18,6 @@ */ -#include <osl/mutex.hxx> - #include <com/sun/star/lang/XTypeProvider.hpp> #include <com/sun/star/task/DocumentPasswordRequest.hpp> #include <com/sun/star/task/XInteractionPassword.hpp> @@ -30,6 +28,8 @@ #include "tdoc_passwordrequest.hxx" +#include <mutex> + using namespace com::sun::star; using namespace tdoc_ucp; @@ -65,7 +65,7 @@ namespace tdoc_ucp virtual OUString SAL_CALL getPassword() override; private: - osl::Mutex m_aMutex; + std::mutex m_aMutex; OUString m_aPassword; }; @@ -148,14 +148,14 @@ void SAL_CALL InteractionSupplyPassword::select() void SAL_CALL InteractionSupplyPassword::setPassword( const OUString& aPasswd ) { - osl::MutexGuard aGuard( m_aMutex ); + std::scoped_lock aGuard( m_aMutex ); m_aPassword = aPasswd; } // virtual OUString SAL_CALL InteractionSupplyPassword::getPassword() { - osl::MutexGuard aGuard( m_aMutex ); + std::scoped_lock aGuard( m_aMutex ); return m_aPassword; } |