summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-02-17 13:23:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-02-18 09:48:30 +0000
commitaa4d174103f5422168a29b83f596953098e4794c (patch)
tree786ba4b5e9ab23a8c9b7ca853c9f3801de024747 /include
parentcb9492ce8a54848b5418a0efdf2beeb7999f3e54 (diff)
osl::Mutex->std::mutex in dbaui::OAsynchronousLink
Change-Id: Ida29c113db891b260ebc2b6d0d4638cb5224eac6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/147231 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/dbaccess/AsynchronousLink.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/dbaccess/AsynchronousLink.hxx b/include/dbaccess/AsynchronousLink.hxx
index 0b63cbed957d..22c40dc5b714 100644
--- a/include/dbaccess/AsynchronousLink.hxx
+++ b/include/dbaccess/AsynchronousLink.hxx
@@ -19,7 +19,7 @@
#pragma once
-#include <osl/mutex.hxx>
+#include <mutex>
#include <tools/link.hxx>
struct ImplSVEvent;
@@ -38,8 +38,8 @@ namespace dbaui
class OAsynchronousLink final
{
Link<void*,void> m_aHandler;
- ::osl::Mutex m_aEventSafety;
- ::osl::Mutex m_aDestructionSafety;
+ std::mutex m_aEventSafety;
+ std::mutex m_aDestructionSafety;
ImplSVEvent * m_nEventId;
DECL_LINK(OnAsyncCall, void*, void);