From 9974ed792a1141fe3c3dc0a1ec5255a23e76f27b Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 7 May 2022 21:15:36 +0200 Subject: osl::Mutex->std::mutex in slideshow::EventQueue Change-Id: Ie9e53e5dc2c842e11457846b5f177fc55683e0d4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134016 Tested-by: Jenkins Reviewed-by: Noel Grandin --- slideshow/source/inc/eventqueue.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'slideshow/source/inc') diff --git a/slideshow/source/inc/eventqueue.hxx b/slideshow/source/inc/eventqueue.hxx index 63c93f7a302d..fb0f1b8536eb 100644 --- a/slideshow/source/inc/eventqueue.hxx +++ b/slideshow/source/inc/eventqueue.hxx @@ -21,10 +21,10 @@ #define INCLUDED_SLIDESHOW_SOURCE_INC_EVENTQUEUE_HXX #include -#include #include "event.hxx" +#include #include #include @@ -116,7 +116,7 @@ namespace slideshow::internal getTimer() const { return mpTimer; } private: - mutable ::osl::Mutex maMutex; + mutable std::mutex maMutex; struct EventEntry { -- cgit