From 9ca9d364581e64b8e7ba9b4cd8d745ba22b2a2d8 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 21 Jul 2021 21:47:21 +0200 Subject: osl::Mutex->std::mutex in StatusIndicatorFactory Change-Id: I23c6765e5932288ce439273c600bdbf5017266ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119377 Tested-by: Jenkins Reviewed-by: Noel Grandin --- framework/inc/helper/statusindicatorfactory.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'framework/inc') diff --git a/framework/inc/helper/statusindicatorfactory.hxx b/framework/inc/helper/statusindicatorfactory.hxx index f0f46a26ee95..ca8cef12d5fe 100644 --- a/framework/inc/helper/statusindicatorfactory.hxx +++ b/framework/inc/helper/statusindicatorfactory.hxx @@ -22,6 +22,7 @@ // Attention: stl headers must(!) be included at first. Otherwise it can make trouble // with solaris headers ... #include +#include // include files of own module #include @@ -124,7 +125,7 @@ class StatusIndicatorFactory final : public ::cppu::WeakImplHelper< // member private: - osl::Mutex m_mutex; + std::mutex m_mutex; /** stack with all current indicator children. */ IndicatorStack m_aStack; -- cgit