From 7a4a107283dd43a35434f73cd7fbf291c8837b6d Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 31 Jul 2021 19:15:24 +0200 Subject: osl::Mutex->std::mutex in TreeFileIterator Change-Id: Ie4e102c03aef8ded29561359c58e6c78cfebbdc2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119755 Tested-by: Jenkins Reviewed-by: Noel Grandin --- xmlhelp/source/cxxhelp/inc/tvread.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'xmlhelp/source/cxxhelp/inc') diff --git a/xmlhelp/source/cxxhelp/inc/tvread.hxx b/xmlhelp/source/cxxhelp/inc/tvread.hxx index 31ec7fedfbf6..fad7fa42fcdd 100644 --- a/xmlhelp/source/cxxhelp/inc/tvread.hxx +++ b/xmlhelp/source/cxxhelp/inc/tvread.hxx @@ -19,6 +19,7 @@ #pragma once +#include #include #include #include @@ -258,7 +259,7 @@ namespace treeview { void implGetLanguageVectorFromPackage( ::std::vector< OUString > &rv, const css::uno::Reference< css::deployment::XPackage >& xPackage ); - osl::Mutex m_aMutex; + std::mutex m_aMutex; css::uno::Reference< css::uno::XComponentContext > m_xContext; css::uno::Reference< css::ucb::XSimpleFileAccess3 > m_xSFA; -- cgit